123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458 |
- import {Fragment, useCallback, useMemo, useState} from 'react';
- import styled from '@emotion/styled';
- import * as qs from 'query-string';
- import {type ModalRenderProps, openModal} from 'sentry/actionCreators/modal';
- import {Button} from 'sentry/components/button';
- import {AreaChart} from 'sentry/components/charts/areaChart';
- import {getFormatter} from 'sentry/components/charts/components/tooltip';
- import {HeaderTitleLegend} from 'sentry/components/charts/styles';
- import CircleIndicator from 'sentry/components/circleIndicator';
- import SelectControl from 'sentry/components/forms/controls/selectControl';
- import ProjectBadge from 'sentry/components/idBadge/projectBadge';
- import LoadingError from 'sentry/components/loadingError';
- import LoadingIndicator from 'sentry/components/loadingIndicator';
- import Panel from 'sentry/components/panels/panel';
- import PanelBody from 'sentry/components/panels/panelBody';
- import {Tooltip} from 'sentry/components/tooltip';
- import {t} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import type {PageFilters} from 'sentry/types/core';
- import type {Organization} from 'sentry/types/organization';
- import type {Project} from 'sentry/types/project';
- import {parsePeriodToHours} from 'sentry/utils/duration/parsePeriodToHours';
- import {statsPeriodToDays} from 'sentry/utils/duration/statsPeriodToDays';
- import {
- getFieldFromMetricsQuery as getAlertAggregate,
- getMetricsInterval,
- isVirtualMetric,
- } from 'sentry/utils/metrics';
- import {hasCustomMetricsExtractionRules} from 'sentry/utils/metrics/features';
- import {formatMetricUsingUnit} from 'sentry/utils/metrics/formatters';
- import {
- formatMRI,
- formatMRIField,
- getUseCaseFromMRI,
- isExtractedCustomMetric,
- } from 'sentry/utils/metrics/mri';
- import type {MetricsQuery} from 'sentry/utils/metrics/types';
- import {useMetricsQuery} from 'sentry/utils/metrics/useMetricsQuery';
- import {
- useVirtualMetricsContext,
- VirtualMetricsContextProvider,
- } from 'sentry/utils/metrics/virtualMetricsContext';
- import useOrganization from 'sentry/utils/useOrganization';
- import usePageFilters from 'sentry/utils/usePageFilters';
- import useProjects from 'sentry/utils/useProjects';
- import useRouter from 'sentry/utils/useRouter';
- import {AVAILABLE_TIME_PERIODS} from 'sentry/views/alerts/rules/metric/triggers/chart';
- import {
- Dataset,
- EventTypes,
- TimePeriod,
- TimeWindow,
- } from 'sentry/views/alerts/rules/metric/types';
- import {AlertWizardAlertNames} from 'sentry/views/alerts/wizard/options';
- import {createChartPalette} from 'sentry/views/metrics/utils/metricsChartPalette';
- import {getChartTimeseries} from 'sentry/views/metrics/widget';
- interface FormState {
- environment: string | null;
- project: string | null;
- }
- function getAlertPeriod({period, start, end}: PageFilters['datetime']) {
- const inHours = statsPeriodToDays(period, start, end) * 24;
- switch (true) {
- case inHours <= 6:
- return TimePeriod.SIX_HOURS;
- case inHours <= 24:
- return TimePeriod.ONE_DAY;
- case inHours <= 3 * 24:
- return TimePeriod.THREE_DAYS;
- case inHours <= 7 * 24:
- return TimePeriod.SEVEN_DAYS;
- case inHours <= 14 * 24:
- return TimePeriod.FOURTEEN_DAYS;
- default:
- return TimePeriod.SEVEN_DAYS;
- }
- }
- const TIME_WINDOWS_TO_CHECK = [
- TimeWindow.ONE_MINUTE,
- TimeWindow.FIVE_MINUTES,
- TimeWindow.TEN_MINUTES,
- TimeWindow.FIFTEEN_MINUTES,
- TimeWindow.THIRTY_MINUTES,
- TimeWindow.ONE_HOUR,
- TimeWindow.TWO_HOURS,
- TimeWindow.FOUR_HOURS,
- TimeWindow.ONE_DAY,
- ];
- export function getAlertInterval(
- metricsQuery: MetricsQuery,
- datetime: PageFilters['datetime'],
- period: TimePeriod
- ) {
- const useCase = getUseCaseFromMRI(metricsQuery.mri) ?? 'custom';
- const interval = getMetricsInterval(datetime, useCase);
- const inMinutes = parsePeriodToHours(interval) * 60;
- function toInterval(timeWindow: TimeWindow) {
- return `${timeWindow}m`;
- }
- for (let index = 0; index < TIME_WINDOWS_TO_CHECK.length; index++) {
- const timeWindow = TIME_WINDOWS_TO_CHECK[index];
- if (inMinutes <= timeWindow && AVAILABLE_TIME_PERIODS[timeWindow].includes(period)) {
- return toInterval(timeWindow);
- }
- }
- return toInterval(TimeWindow.ONE_HOUR);
- }
- interface Props {
- metricsQuery: MetricsQuery;
- organization: Organization;
- }
- export function CreateAlertModal({
- Header,
- Body,
- Footer,
- metricsQuery,
- }: Props & ModalRenderProps) {
- const router = useRouter();
- const organization = useOrganization();
- const {resolveVirtualMRI, getExtractionRule} = useVirtualMetricsContext();
- const {projects} = useProjects();
- const {selection} = usePageFilters();
- const [formState, setFormState] = useState<FormState>(() => {
- let project =
- selection.projects.length === 1 ? selection.projects[0].toString() : null;
- if (isVirtualMetric(metricsQuery) && metricsQuery.condition) {
- const rule = getExtractionRule(metricsQuery.mri, metricsQuery.condition);
- if (rule) {
- project = rule.projectId.toString();
- }
- }
- const environment =
- selection.environments.length === 1 && project ? selection.environments[0] : null;
- return {
- project,
- environment,
- };
- });
- const selectedProject = projects.find(p => p.id === formState.project);
- const isFormValid = formState.project !== null;
- const alertPeriod = useMemo(
- () => getAlertPeriod(selection.datetime),
- [selection.datetime]
- );
- const alertInterval = useMemo(
- () => getAlertInterval(metricsQuery, selection.datetime, alertPeriod),
- [metricsQuery, selection.datetime, alertPeriod]
- );
- const resolvedQuery = useMemo(() => {
- if (isVirtualMetric(metricsQuery) && metricsQuery.condition) {
- return resolveVirtualMRI(
- metricsQuery.mri,
- metricsQuery.condition,
- metricsQuery.aggregation
- );
- }
- return metricsQuery;
- }, [metricsQuery, resolveVirtualMRI]);
- const alertChartQuery = useMemo(
- () => ({
- mri: resolvedQuery.mri,
- aggregation: resolvedQuery.aggregation,
- query: metricsQuery.query,
- name: 'query',
- }),
- [resolvedQuery.mri, resolvedQuery.aggregation, metricsQuery.query]
- );
- const aggregate = useMemo(
- () => getAlertAggregate({...metricsQuery, ...resolvedQuery}),
- [metricsQuery, resolvedQuery]
- );
- const formattedAggregate = isExtractedCustomMetric(metricsQuery)
- ? `${metricsQuery.aggregation}(${formatMRI(metricsQuery.mri)})`
- : formatMRIField(aggregate);
- const {data, isPending, refetch, isError} = useMetricsQuery(
- [alertChartQuery],
- {
- projects: formState.project ? [parseInt(formState.project, 10)] : [],
- environments: formState.environment ? [formState.environment] : [],
- datetime: {period: alertPeriod} as PageFilters['datetime'],
- },
- {
- interval: alertInterval,
- }
- );
- const chartSeries = useMemo(
- () =>
- data &&
- getChartTimeseries(data, [alertChartQuery], {
- // We are limited to one series in this chart, so we can just use the first color
- getChartPalette: createChartPalette,
- }),
- [alertChartQuery, data]
- );
- const projectOptions = useMemo(() => {
- const nonMemberProjects: Project[] = [];
- const memberProjects: Project[] = [];
- projects
- .filter(
- project =>
- selection.projects.length === 0 ||
- selection.projects.includes(parseInt(project.id, 10))
- )
- .forEach(project =>
- project.isMember ? memberProjects.push(project) : nonMemberProjects.push(project)
- );
- return [
- {
- label: t('My Projects'),
- options: memberProjects.map(p => ({
- value: p.id,
- label: p.slug,
- leadingItems: <ProjectBadge project={p} avatarSize={16} hideName disableLink />,
- })),
- },
- {
- label: t('All Projects'),
- options: nonMemberProjects.map(p => ({
- value: p.id,
- label: p.slug,
- leadingItems: <ProjectBadge project={p} avatarSize={16} hideName disableLink />,
- })),
- },
- ];
- }, [selection.projects, projects]);
- const environmentOptions = useMemo(
- () => [
- {
- value: null,
- label: t('All Environments'),
- },
- ...(selectedProject?.environments.map(env => ({
- value: env,
- label: env,
- })) ?? []),
- ],
- [selectedProject?.environments]
- );
- const handleSubmit = useCallback(() => {
- router.push(
- `/organizations/${organization.slug}/alerts/new/metric/?${qs.stringify({
- aggregate,
- query: `${metricsQuery.query} event.type:transaction`.trim(),
- createFromDiscover: true,
- dataset: Dataset.GENERIC_METRICS,
- interval: alertInterval,
- statsPeriod: alertPeriod,
- environment: formState.environment ?? undefined,
- project: selectedProject!.slug,
- referrer: 'ddm',
- // Event type also needs to be added to the query
- eventTypes: EventTypes.TRANSACTION,
- })}`
- );
- }, [
- router,
- aggregate,
- metricsQuery.query,
- organization.slug,
- alertInterval,
- alertPeriod,
- formState.environment,
- selectedProject,
- ]);
- const unit = chartSeries?.[0]?.unit ?? 'none';
- const chartOptions = useMemo(() => {
- const bucketSize =
- (chartSeries?.[0]?.data[1]?.name ?? 0) - (chartSeries?.[0]?.data[0]?.name ?? 0);
- const formatters = {
- valueFormatter: value => formatMetricUsingUnit(value, unit),
- isGroupedByDate: true,
- bucketSize,
- showTimeInTooltip: true,
- };
- return {
- isGroupedByDate: true,
- height: 200,
- grid: {top: 20, bottom: 20, left: 15, right: 25},
- tooltip: {
- formatter: getFormatter(formatters),
- },
- yAxis: {
- axisLabel: {
- formatter: value => formatMetricUsingUnit(value, unit),
- },
- },
- };
- }, [chartSeries, unit]);
- return (
- <Fragment>
- <Header closeButton>
- <h4>{t('Create Alert')}</h4>
- </Header>
- <Body>
- <ContentWrapper>
- <SelectControl
- placeholder={t('Select a project')}
- options={projectOptions}
- value={formState.project}
- onChange={({value}) =>
- setFormState(prev => ({
- project: value,
- environment: projects
- .find(p => p.id === value)
- ?.environments.includes(prev.environment ?? '')
- ? prev.environment
- : null,
- }))
- }
- />
- <SelectControl
- placeholder={t('Select an environment')}
- options={environmentOptions}
- disabled={!selectedProject}
- value={formState.environment}
- onChange={({value}) => setFormState(prev => ({...prev, environment: value}))}
- />
- <div>
- {t(
- 'Grouped series are not supported by alerts. This is a preview of the data the alert will use.'
- )}
- </div>
- <ChartPanel isLoading={isPending}>
- <PanelBody withPadding>
- <ChartHeader>
- <HeaderTitleLegend>
- {AlertWizardAlertNames.custom_metrics}
- </HeaderTitleLegend>
- </ChartHeader>
- <ChartFilters>
- <StyledCircleIndicator size={8} />
- <Tooltip
- title={
- <Fragment>
- <Filters>{formattedAggregate}</Filters>
- {metricsQuery.query}
- </Fragment>
- }
- isHoverable
- skipWrapper
- overlayStyle={{
- maxWidth: '90vw',
- lineBreak: 'anywhere',
- textAlign: 'left',
- }}
- showOnlyOnOverflow
- >
- <QueryFilters>
- <Filters>{formattedAggregate}</Filters>
- {metricsQuery.query}
- </QueryFilters>
- </Tooltip>
- </ChartFilters>
- </PanelBody>
- {isPending && <StyledLoadingIndicator />}
- {isError && <LoadingError onRetry={refetch} />}
- {chartSeries && <AreaChart series={chartSeries} {...chartOptions} />}
- </ChartPanel>
- </ContentWrapper>
- </Body>
- <Footer>
- <Tooltip disabled={isFormValid} title={t('Please select a project')}>
- <Button priority="primary" disabled={!isFormValid} onClick={handleSubmit}>
- {t('Continue')}
- </Button>
- </Tooltip>
- </Footer>
- </Fragment>
- );
- }
- const ContentWrapper = styled('div')`
- display: grid;
- grid-template-columns: 1fr;
- gap: ${space(2)};
- `;
- const ChartPanel = styled(Panel)<{isLoading: boolean}>`
- ${p => p.isLoading && `opacity: 0.6;`}
- `;
- const ChartHeader = styled('div')`
- margin-bottom: ${space(3)};
- `;
- const StyledCircleIndicator = styled(CircleIndicator)`
- background: ${p => p.theme.formText};
- height: ${space(1)};
- margin-right: ${space(0.5)};
- `;
- const ChartFilters = styled('div')`
- font-size: ${p => p.theme.fontSizeSmall};
- font-family: ${p => p.theme.text.family};
- color: ${p => p.theme.textColor};
- display: inline-grid;
- grid-template-columns: max-content auto;
- align-items: center;
- `;
- const Filters = styled('span')`
- margin-right: ${space(1)};
- `;
- const QueryFilters = styled('span')`
- min-width: 0px;
- ${p => p.theme.overflowEllipsis}
- `;
- // Totals to a height of 200px -> the height of the chart
- const StyledLoadingIndicator = styled(LoadingIndicator)`
- height: 64px;
- margin-top: 58px;
- margin-bottom: 78px;
- `;
- export function openCreateAlertModal(props: Props) {
- openModal(deps => {
- return hasCustomMetricsExtractionRules(props.organization) ? (
- <VirtualMetricsContextProvider>
- <CreateAlertModal {...props} {...deps} />
- </VirtualMetricsContextProvider>
- ) : (
- <CreateAlertModal {...props} {...deps} />
- );
- });
- }
|