123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387 |
- import {Fragment, useState} from 'react';
- import isPropValid from '@emotion/is-prop-valid';
- import styled from '@emotion/styled';
- import {motion} from 'framer-motion';
- import {Tooltip} from 'sentry/components/tooltip';
- import {t} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import {percent} from 'sentry/utils';
- import {useQuery} from 'sentry/utils/queryClient';
- import {
- getOtherDomainsActionsAndOpTimeseries,
- getTopDomainsActionsAndOp,
- getTopDomainsActionsAndOpTimeseries,
- spanThroughput,
- totalCumulativeTime,
- } from 'sentry/views/starfish/views/webServiceView/queries';
- import {WebServiceBreakdownChart} from 'sentry/views/starfish/views/webServiceView/webServiceBreakdownChart';
- const COLORS = ['#402A65', '#694D99', '#9A81C4', '#BBA6DF', '#EAE2F8', '#F8F6FC'];
- const TOOLTIP_DELAY = 800;
- const HOST = 'http://localhost:8080';
- type ModuleSegment = {
- action: string;
- domain: string;
- span_operation: string;
- sum: number;
- };
- type Props = {
- title: string;
- transaction?: string;
- };
- export function getSegmentLabel(span_operation, action, domain) {
- if (span_operation === 'http.client') {
- return t('%s requests to %s', action, domain);
- }
- if (span_operation === 'db') {
- return t('%s queries on %s', action, domain);
- }
- return span_operation || domain || undefined;
- }
- function FacetBreakdownBar({title, transaction: maybeTransaction}: Props) {
- const [hoveredValue, setHoveredValue] = useState<ModuleSegment | null>(null);
- const transaction = maybeTransaction ?? '';
- const {data: segments} = useQuery({
- queryKey: ['webServiceSpanGrouping', transaction],
- queryFn: () =>
- fetch(`${HOST}/?query=${getTopDomainsActionsAndOp({transaction})}`).then(res =>
- res.json()
- ),
- retry: false,
- initialData: [],
- });
- const {data: cumulativeTime} = useQuery({
- queryKey: ['totalCumulativeTime', transaction],
- queryFn: () =>
- fetch(`${HOST}/?query=${totalCumulativeTime({transaction})}`).then(res =>
- res.json()
- ),
- retry: false,
- initialData: [],
- });
- const totalValues = cumulativeTime.reduce((acc, segment) => acc + segment.sum, 0);
- const totalSegments = segments.reduce((acc, segment) => acc + segment.sum, 0);
- const otherValue = totalValues - totalSegments;
- const otherSegment = {
- span_operation: 'other',
- sum: otherValue,
- action: '',
- domain: '',
- } as ModuleSegment;
- let topConditions =
- segments.length > 0
- ? ` (span_operation = '${segments[0].span_operation}' ${
- segments[0].action ? `AND action = '${segments[0].action}'` : ''
- } ${segments[0].domain ? `AND domain = '${segments[0].domain}'` : ''})`
- : '';
- for (let index = 1; index < segments.length; index++) {
- const element = segments[index];
- topConditions = topConditions.concat(
- ' OR ',
- `(span_operation = '${element.span_operation}' ${
- element.action ? `AND action = '${element.action}'` : ''
- } ${element.domain ? `AND domain = '${element.domain}'` : ''})`
- );
- }
- const {isLoading: isTopDataLoading, data: topData} = useQuery({
- queryKey: ['topSpanGroupTimeseries', transaction, topConditions],
- queryFn: () =>
- fetch(
- `${HOST}/?query=${getTopDomainsActionsAndOpTimeseries({
- transaction,
- topConditions,
- })}`
- ).then(res => res.json()),
- retry: false,
- initialData: [],
- });
- const {isLoading: isOtherDataLoading, data: otherData} = useQuery({
- queryKey: ['otherSpanGroupTimeseries', transaction, topConditions],
- queryFn: () =>
- fetch(
- `${HOST}/?query=${getOtherDomainsActionsAndOpTimeseries({
- transaction,
- topConditions,
- })}`
- ).then(res => res.json()),
- retry: false,
- initialData: [],
- });
- const {data: throughputData} = useQuery({
- queryKey: ['httpThroughputData', transaction],
- queryFn: () =>
- fetch(`${HOST}/?query=${spanThroughput({transaction})}`).then(res => res.json()),
- retry: false,
- initialData: [],
- });
- function renderTitle() {
- return (
- <Title>
- <TitleType>{title}</TitleType>
- </Title>
- );
- }
- function renderSegments() {
- if (totalValues === 0) {
- return (
- <SegmentBar>
- <p>{t('No recent data.')}</p>
- </SegmentBar>
- );
- }
- return (
- <SegmentBar>
- {segments.map((value, index) => {
- const pct = percent(value.sum, totalValues);
- const pctLabel = Math.floor(pct);
- const segmentProps = {
- index,
- onClick: () => {},
- };
- const segmentLabel = getSegmentLabel(
- value.span_operation,
- value.action,
- value.domain
- );
- return (
- <div
- key={`segment-${segmentLabel}`}
- style={{width: pct + '%'}}
- onMouseOver={() => {
- setHoveredValue(value);
- }}
- onMouseLeave={() => setHoveredValue(null)}
- >
- <Tooltip skipWrapper delay={TOOLTIP_DELAY} title={segmentLabel}>
- <Segment
- aria-label={`${segmentLabel} ${t('segment')}`}
- color={COLORS[index]}
- {...segmentProps}
- >
- {/* if the first segment is 6% or less, the label won't fit cleanly into the segment, so don't show the label */}
- {index === 0 && pctLabel > 6 ? `${pctLabel}%` : null}
- </Segment>
- </Tooltip>
- </div>
- );
- })}
- {otherValue > 0 && (
- <div
- key="segment-other"
- style={{width: percent(otherValue, totalValues) + '%'}}
- onMouseOver={() => {
- setHoveredValue(otherSegment);
- }}
- onMouseLeave={() => setHoveredValue(null)}
- >
- <Tooltip skipWrapper delay={TOOLTIP_DELAY} title="other">
- <Segment
- aria-label="other segment"
- color={COLORS[5]}
- {...{
- index: 5,
- onClick: () => {},
- }}
- />
- </Tooltip>
- </div>
- )}
- </SegmentBar>
- );
- }
- function renderLegend() {
- return (
- <LegendAnimateContainer expanded animate={{height: '100%', opacity: 1}}>
- <LegendContainer>
- {segments.map((segment, index) => {
- const pctLabel = Math.floor(percent(segment.sum, totalValues));
- const unfocus = !!hoveredValue && hoveredValue !== segment;
- const focus = hoveredValue === segment;
- const label = getSegmentLabel(
- segment.span_operation,
- segment.action,
- segment.domain
- );
- return (
- <li key={`segment-${label}-${index}`}>
- <LegendRow
- onMouseOver={() => setHoveredValue(segment)}
- onMouseLeave={() => setHoveredValue(null)}
- onClick={() => {}}
- >
- <LegendDot color={COLORS[index]} focus={focus} />
- <LegendText unfocus={unfocus}>
- {label ?? <NotApplicableLabel>{t('n/a')}</NotApplicableLabel>}
- </LegendText>
- {<LegendPercent>{`${pctLabel}%`}</LegendPercent>}
- </LegendRow>
- </li>
- );
- })}
- </LegendContainer>
- </LegendAnimateContainer>
- );
- }
- return (
- <Fragment>
- <TagSummary>
- <details open aria-expanded onClick={e => e.preventDefault()}>
- <StyledSummary>
- <TagHeader>
- {renderTitle()}
- {renderSegments()}
- </TagHeader>
- </StyledSummary>
- {renderLegend()}
- </details>
- </TagSummary>
- <WebServiceBreakdownChart
- isTopDataLoading={isTopDataLoading}
- topData={topData}
- isOtherDataLoading={isOtherDataLoading}
- otherData={otherData}
- throughputData={throughputData}
- />
- </Fragment>
- );
- }
- export default FacetBreakdownBar;
- const TagSummary = styled('div')`
- margin-bottom: ${space(2)};
- `;
- const TagHeader = styled('span')<{clickable?: boolean}>`
- ${p => (p.clickable ? 'cursor: pointer' : null)};
- `;
- const SegmentBar = styled('div')`
- display: flex;
- overflow: hidden;
- `;
- const Title = styled('div')`
- display: flex;
- font-size: ${p => p.theme.fontSizeMedium};
- justify-content: space-between;
- margin-bottom: ${space(1)};
- line-height: 1.1;
- `;
- const TitleType = styled('div')`
- flex: none;
- color: ${p => p.theme.textColor};
- font-weight: bold;
- font-size: ${p => p.theme.fontSizeMedium};
- margin-right: ${space(1)};
- align-self: center;
- `;
- const Segment = styled('span', {shouldForwardProp: isPropValid})<{color: string}>`
- &:hover {
- color: ${p => p.theme.white};
- }
- display: block;
- width: 100%;
- height: ${space(2)};
- color: ${p => p.theme.white};
- outline: none;
- background-color: ${p => p.color};
- text-align: right;
- font-size: ${p => p.theme.fontSizeExtraSmall};
- padding: 1px ${space(0.5)} 0 0;
- `;
- const LegendAnimateContainer = styled(motion.div, {
- shouldForwardProp: prop =>
- prop === 'animate' || (prop !== 'expanded' && isPropValid(prop)),
- })<{expanded: boolean}>`
- height: 0;
- opacity: 0;
- ${p => (!p.expanded ? 'overflow: hidden;' : '')}
- `;
- const LegendContainer = styled('ol')`
- list-style: none;
- padding: 0;
- margin: ${space(1)} 0;
- `;
- const LegendRow = styled('div')`
- display: flex;
- align-items: center;
- cursor: pointer;
- padding: ${space(0.5)} 0;
- `;
- const LegendDot = styled('span')<{color: string; focus: boolean}>`
- padding: 0;
- position: relative;
- width: 11px;
- height: 11px;
- text-indent: -9999em;
- display: inline-block;
- border-radius: 50%;
- flex-shrink: 0;
- background-color: ${p => p.color};
- &:after {
- content: '';
- border-radius: 50%;
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- outline: ${p => p.theme.gray100} ${space(0.5)} solid;
- opacity: ${p => (p.focus ? '1' : '0')};
- transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
- }
- `;
- const LegendText = styled('span')<{unfocus: boolean}>`
- font-size: ${p => p.theme.fontSizeSmall};
- margin-left: ${space(1)};
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- transition: color 0.3s;
- color: ${p => (p.unfocus ? p.theme.gray300 : p.theme.gray400)};
- `;
- const LegendPercent = styled('span')`
- font-size: ${p => p.theme.fontSizeSmall};
- margin-left: ${space(1)};
- color: ${p => p.theme.gray300};
- text-align: right;
- flex-grow: 1;
- `;
- const NotApplicableLabel = styled('span')`
- color: ${p => p.theme.gray300};
- `;
- const StyledSummary = styled('summary')`
- &::-webkit-details-marker {
- display: none;
- }
- `;
|