123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- import type {LineSeriesOption, YAXisComponentOption} from 'echarts';
- import MiniBarChart, {getYAxisMaxFn} from 'sentry/components/charts/miniBarChart';
- import LineSeries from 'sentry/components/charts/series/lineSeries';
- import EmptyMessage from 'sentry/components/emptyMessage';
- import {Panel, PanelBody} from 'sentry/components/panels';
- import {t} from 'sentry/locale';
- import {SeriesDataUnit} from 'sentry/types/echarts';
- import theme from 'sentry/utils/theme';
- import useApiRequests from 'sentry/utils/useApiRequests';
- import {Monitor, MonitorStat} from './types';
- type Props = {
- monitor: Monitor;
- };
- type State = {
- stats: MonitorStat[] | null;
- };
- const MonitorStats = ({monitor}: Props) => {
- const until = Math.floor(new Date().getTime() / 1000);
- const since = until - 3600 * 24 * 30;
- const {data, renderComponent} = useApiRequests<State>({
- endpoints: [
- [
- 'stats',
- `/monitors/${monitor.id}/stats/`,
- {
- query: {
- since: since.toString(),
- until: until.toString(),
- resolution: '1d',
- },
- },
- ],
- ],
- });
- let emptyStats = true;
- const success = {
- seriesName: t('Successful'),
- yAxisIndex: 0,
- data: [] as SeriesDataUnit[],
- };
- const failed = {
- seriesName: t('Failed'),
- yAxisIndex: 0,
- data: [] as SeriesDataUnit[],
- };
- const durationData = [] as [number, number][];
- data.stats?.forEach(p => {
- if (p.ok || p.error) {
- emptyStats = false;
- }
- const timestamp = p.ts * 1000;
- success.data.push({name: timestamp, value: p.ok});
- failed.data.push({name: timestamp, value: p.error});
- durationData.push([timestamp, Math.trunc(p.duration)]);
- });
- const colors = [theme.green300, theme.red300];
- const additionalSeries: LineSeriesOption[] = [
- LineSeries({
- name: t('Duration'),
- data: durationData,
- lineStyle: {color: theme.purple300, width: 2},
- itemStyle: {color: theme.purple300},
- yAxisIndex: 1,
- }),
- ];
- const height = 150;
- const yAxisOptions: YAXisComponentOption = {
- max: getYAxisMaxFn(height),
- splitLine: {
- show: false,
- },
- };
- return renderComponent(
- <Panel>
- <PanelBody withPadding>
- {!emptyStats ? (
- <MiniBarChart
- isGroupedByDate
- showTimeInTooltip
- labelYAxisExtents
- stacked
- colors={colors}
- height={height}
- series={[success, failed]}
- additionalSeries={additionalSeries}
- yAxes={[
- {...yAxisOptions, type: 'value'},
- {
- ...yAxisOptions,
- type: 'value',
- axisLabel: {
- formatter: '{value} ms',
- },
- },
- ]}
- />
- ) : (
- <EmptyMessage
- title={t('Nothing recorded in the last 30 days.')}
- description={t('All check-ins for this monitor.')}
- />
- )}
- </PanelBody>
- </Panel>
- );
- };
- export default MonitorStats;
|