123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- import {CHART_PALETTE} from 'sentry/constants/chartPalette';
- import {t} from 'sentry/locale';
- import {decodeScalar} from 'sentry/utils/queryString';
- import {useLocation} from 'sentry/utils/useLocation';
- import {CHART_HEIGHT} from 'sentry/views/performance/database/settings';
- import {useQueuesTimeSeriesQuery} from 'sentry/views/performance/queues/queries/useQueuesTimeSeriesQuery';
- import Chart, {ChartType} from 'sentry/views/starfish/components/chart';
- import ChartPanel from 'sentry/views/starfish/components/chartPanel';
- interface Props {
- error?: Error | null;
- }
- export function ThroughputChart({error}: Props) {
- const {query} = useLocation();
- const destination = decodeScalar(query.destination);
- const {data, isLoading} = useQueuesTimeSeriesQuery({destination});
- return (
- <ChartPanel title={t('Published vs Processed')}>
- <Chart
- height={CHART_HEIGHT}
- grid={{
- left: '0',
- right: '0',
- top: '8px',
- bottom: '0',
- }}
- data={
- [
- {
- seriesName: t('Published'),
- data: data['count_op(queue.publish)'].data,
- },
- {
- seriesName: t('Processed'),
- data: data['count_op(queue.process)'].data,
- },
- ] ?? []
- }
- loading={isLoading}
- error={error}
- chartColors={CHART_PALETTE[2].slice(1, 3)}
- type={ChartType.LINE}
- showLegend
- />
- </ChartPanel>
- );
- }
|