123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314 |
- import {Fragment} from 'react';
- import type {RouteComponentProps} from 'react-router';
- import styled from '@emotion/styled';
- import type {Location} from 'history';
- import moment from 'moment';
- import type {Client} from 'sentry/api';
- import {Alert} from 'sentry/components/alert';
- import {LinkButton} from 'sentry/components/button';
- import {getInterval} from 'sentry/components/charts/utils';
- import * as Layout from 'sentry/components/layouts/thirds';
- import type {ChangeData} from 'sentry/components/organizations/timeRangeSelector';
- import PageTimeRangeSelector from 'sentry/components/pageTimeRangeSelector';
- import Panel from 'sentry/components/panels/panel';
- import PanelBody from 'sentry/components/panels/panelBody';
- import Placeholder from 'sentry/components/placeholder';
- import {IconEdit} from 'sentry/icons';
- import {t, tct} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import type {Organization, Project} from 'sentry/types';
- import {RuleActionsCategories} from 'sentry/types/alerts';
- import {shouldShowOnDemandMetricAlertUI} from 'sentry/utils/onDemandMetrics/features';
- import MetricHistory from 'sentry/views/alerts/rules/metric/details/metricHistory';
- import {Dataset, MetricRule, TimePeriod} from 'sentry/views/alerts/rules/metric/types';
- import {extractEventTypeFilterFromRule} from 'sentry/views/alerts/rules/metric/utils/getEventTypeFilter';
- import {isOnDemandMetricAlert} from 'sentry/views/alerts/rules/metric/utils/onDemandMetricAlert';
- import {getAlertRuleActionCategory} from 'sentry/views/alerts/rules/utils';
- import {AlertRuleStatus, Incident} from 'sentry/views/alerts/types';
- import {
- hasMigrationFeatureFlag,
- ruleNeedsMigration,
- } from 'sentry/views/alerts/utils/migrationUi';
- import {isCrashFreeAlert} from '../utils/isCrashFreeAlert';
- import {
- API_INTERVAL_POINTS_LIMIT,
- SELECTOR_RELATIVE_PERIODS,
- TIME_WINDOWS,
- TimePeriodType,
- } from './constants';
- import MetricChart from './metricChart';
- import RelatedIssues from './relatedIssues';
- import RelatedTransactions from './relatedTransactions';
- import {MetricDetailsSidebar} from './sidebar';
- interface MetricDetailsBodyProps extends RouteComponentProps<{}, {}> {
- api: Client;
- location: Location;
- organization: Organization;
- timePeriod: TimePeriodType;
- incidents?: Incident[];
- project?: Project;
- rule?: MetricRule;
- selectedIncident?: Incident | null;
- }
- export default function MetricDetailsBody({
- api,
- project,
- rule,
- incidents,
- organization,
- timePeriod,
- selectedIncident,
- location,
- router,
- }: MetricDetailsBodyProps) {
- function getPeriodInterval() {
- const startDate = moment.utc(timePeriod.start);
- const endDate = moment.utc(timePeriod.end);
- const timeWindow = rule?.timeWindow;
- const startEndDifferenceMs = endDate.diff(startDate);
- if (
- timeWindow &&
- (startEndDifferenceMs < API_INTERVAL_POINTS_LIMIT * timeWindow * 60 * 1000 ||
- // Special case 7 days * 1m interval over the api limit
- startEndDifferenceMs === TIME_WINDOWS[TimePeriod.SEVEN_DAYS])
- ) {
- return `${timeWindow}m`;
- }
- return getInterval({start: timePeriod.start, end: timePeriod.end}, 'high');
- }
- function getFilter(): string[] | null {
- if (!rule) {
- return null;
- }
- const {dataset, query} = rule;
- if (isCrashFreeAlert(dataset)) {
- return query.trim().split(' ');
- }
- const eventType = extractEventTypeFilterFromRule(rule);
- return (query ? `(${eventType}) AND (${query.trim()})` : eventType).split(' ');
- }
- const handleTimePeriodChange = (datetime: ChangeData) => {
- const {start, end, relative} = datetime;
- if (start && end) {
- return router.push({
- ...location,
- query: {
- start: moment(start).utc().format(),
- end: moment(end).utc().format(),
- },
- });
- }
- return router.push({
- ...location,
- query: {
- period: relative,
- },
- });
- };
- if (!rule || !project) {
- return (
- <Layout.Body>
- <Layout.Main>
- <Placeholder height="38px" />
- <ChartPanel>
- <PanelBody withPadding>
- <Placeholder height="200px" />
- </PanelBody>
- </ChartPanel>
- </Layout.Main>
- <Layout.Side>
- <Placeholder height="200px" />
- </Layout.Side>
- </Layout.Body>
- );
- }
- const {dataset, aggregate, query} = rule;
- const eventType = extractEventTypeFilterFromRule(rule);
- const queryWithTypeFilter = (
- query ? `(${query}) AND (${eventType})` : eventType
- ).trim();
- const relativeOptions = {
- ...SELECTOR_RELATIVE_PERIODS,
- ...(rule.timeWindow > 1 ? {[TimePeriod.FOURTEEN_DAYS]: t('Last 14 days')} : {}),
- };
- const isSnoozed = rule.snooze;
- const ruleActionCategory = getAlertRuleActionCategory(rule);
- const showOnDemandMetricAlertUI =
- isOnDemandMetricAlert(dataset, aggregate, query) &&
- shouldShowOnDemandMetricAlertUI(organization);
- const showMigrationWarning =
- hasMigrationFeatureFlag(organization) && ruleNeedsMigration(rule);
- const editThresholdLink =
- rule &&
- `/organizations/${organization.slug}/alerts/metric-rules/${
- project?.slug ?? rule?.projects?.[0]
- }/${rule.id}/`;
- return (
- <Fragment>
- {selectedIncident?.alertRule.status === AlertRuleStatus.SNAPSHOT && (
- <StyledLayoutBody>
- <StyledAlert type="warning" showIcon>
- {t('Alert Rule settings have been updated since this alert was triggered.')}
- </StyledAlert>
- </StyledLayoutBody>
- )}
- <Layout.Body>
- <Layout.Main>
- {isSnoozed && (
- <Alert showIcon>
- {ruleActionCategory === RuleActionsCategories.NO_DEFAULT
- ? tct(
- "[creator] muted this alert so these notifications won't be sent in the future.",
- {creator: rule.snoozeCreatedBy}
- )
- : tct(
- "[creator] muted this alert[forEveryone]so you won't get these notifications in the future.",
- {
- creator: rule.snoozeCreatedBy,
- forEveryone: rule.snoozeForEveryone ? ' for everyone ' : ' ',
- }
- )}
- </Alert>
- )}
- <StyledPageTimeRangeSelector
- relative={timePeriod.period ?? ''}
- start={(timePeriod.custom && timePeriod.start) || null}
- end={(timePeriod.custom && timePeriod.end) || null}
- utc={null}
- onChange={handleTimePeriodChange}
- relativeOptions={relativeOptions}
- showAbsolute={false}
- disallowArbitraryRelativeRanges
- />
- {showMigrationWarning ? (
- <Alert
- type="warning"
- showIcon
- trailingItems={
- <LinkButton
- to={editThresholdLink}
- size="xs"
- icon={<IconEdit size="xs" />}
- >
- {t('Edit')}
- </LinkButton>
- }
- >
- {t('The current thresholds for this alert could use some review')}
- </Alert>
- ) : null}
- <MetricChart
- api={api}
- rule={rule}
- incidents={incidents}
- timePeriod={timePeriod}
- selectedIncident={selectedIncident}
- organization={organization}
- project={project}
- interval={getPeriodInterval()}
- query={isCrashFreeAlert(dataset) ? query : queryWithTypeFilter}
- filter={getFilter()}
- isOnDemandAlert={isOnDemandMetricAlert(dataset, aggregate, query)}
- />
- <DetailWrapper>
- <ActivityWrapper>
- <MetricHistory incidents={incidents} />
- {[Dataset.METRICS, Dataset.SESSIONS, Dataset.ERRORS].includes(dataset) && (
- <RelatedIssues
- organization={organization}
- rule={rule}
- projects={[project]}
- timePeriod={timePeriod}
- query={
- dataset === Dataset.ERRORS
- ? // Not using (query) AND (event.type:x) because issues doesn't support it yet
- `${extractEventTypeFilterFromRule(rule)} ${query}`.trim()
- : isCrashFreeAlert(dataset)
- ? `${query} error.unhandled:true`.trim()
- : undefined
- }
- />
- )}
- {dataset === Dataset.TRANSACTIONS && (
- <RelatedTransactions
- organization={organization}
- location={location}
- rule={rule}
- projects={[project]}
- timePeriod={timePeriod}
- filter={extractEventTypeFilterFromRule(rule)}
- />
- )}
- </ActivityWrapper>
- </DetailWrapper>
- </Layout.Main>
- <Layout.Side>
- <MetricDetailsSidebar
- rule={rule}
- showOnDemandMetricAlertUI={showOnDemandMetricAlertUI}
- />
- </Layout.Side>
- </Layout.Body>
- </Fragment>
- );
- }
- const DetailWrapper = styled('div')`
- display: flex;
- flex: 1;
- @media (max-width: ${p => p.theme.breakpoints.small}) {
- flex-direction: column-reverse;
- }
- `;
- const StyledLayoutBody = styled(Layout.Body)`
- flex-grow: 0;
- padding-bottom: 0 !important;
- @media (min-width: ${p => p.theme.breakpoints.medium}) {
- grid-template-columns: auto;
- }
- `;
- const StyledAlert = styled(Alert)`
- margin: 0;
- `;
- const ActivityWrapper = styled('div')`
- display: flex;
- flex: 1;
- flex-direction: column;
- width: 100%;
- `;
- const ChartPanel = styled(Panel)`
- margin-top: ${space(2)};
- `;
- const StyledPageTimeRangeSelector = styled(PageTimeRangeSelector)`
- margin-bottom: ${space(2)};
- `;
|