1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- import {CHART_PALETTE} from 'sentry/constants/chartPalette';
- import {t} from 'sentry/locale';
- import {CHART_HEIGHT} from 'sentry/views/performance/database/settings';
- import {useQueuesTimeSeriesQuery} from 'sentry/views/performance/queues/queries/useQueuesTimeSeriesQuery';
- import type {Referrer} from 'sentry/views/performance/queues/referrers';
- import Chart, {ChartType} from 'sentry/views/starfish/components/chart';
- import ChartPanel from 'sentry/views/starfish/components/chartPanel';
- interface Props {
- referrer: Referrer;
- destination?: string;
- error?: Error | null;
- }
- export function ThroughputChart({error, destination, referrer}: Props) {
- const {data, isLoading} = useQueuesTimeSeriesQuery({destination, referrer});
- 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>
- );
- }
|