grafana/public/app/features/alerting/unified/components/rule-viewer/RuleViewer.tsx

577 lines
20 KiB
TypeScript

import { css } from '@emotion/css';
import { chain, truncate } from 'lodash';
import { useEffect, useState } from 'react';
import { useMeasure } from 'react-use';
import { AlertLabels, StateText } from '@grafana/alerting/unstable';
import { NavModelItem, UrlQueryValue } from '@grafana/data';
import { Trans, t } from '@grafana/i18n';
import {
Alert,
LinkButton,
LoadingBar,
Stack,
TabContent,
Text,
TextLink,
useStyles2,
withErrorBoundary,
} from '@grafana/ui';
import { PageInfoItem } from 'app/core/components/Page/types';
import { useQueryParams } from 'app/core/hooks/useQueryParams';
import InfoPausedRule from 'app/features/alerting/unified/components/InfoPausedRule';
import { RuleActionsButtons } from 'app/features/alerting/unified/components/rules/RuleActionsButtons';
import {
AlertInstanceTotalState,
AlertInstanceTotals,
CombinedRule,
RuleGroupIdentifierV2,
RuleHealth,
RuleIdentifier,
} from 'app/types/unified-alerting';
import { PromAlertingRuleState, PromRuleType } from 'app/types/unified-alerting-dto';
import { logError } from '../../Analytics';
import { defaultPageNav } from '../../RuleViewer';
import { useRuleViewExtensionsNav } from '../../enterprise-components/rule-view-page/navigation';
import { shouldUseAlertingListViewV2, shouldUsePrometheusRulesPrimary } from '../../featureToggles';
import { isError, useAsync } from '../../hooks/useAsync';
import { useRuleLocation } from '../../hooks/useCombinedRule';
import { useHasRulerV2 } from '../../hooks/useHasRuler';
import { useRuleGroupConsistencyCheck } from '../../hooks/usePrometheusConsistencyCheck';
import { useReturnTo } from '../../hooks/useReturnTo';
import { PluginOriginBadge } from '../../plugins/PluginOriginBadge';
import { normalizeHealth, normalizeState } from '../../rule-list/components/util';
import { Annotation } from '../../utils/constants';
import { getRulesSourceUid, ruleIdentifierToRuleSourceIdentifier } from '../../utils/datasource';
import { labelsSize } from '../../utils/labels';
import { makeDashboardLink, makePanelLink, stringifyErrorLike } from '../../utils/misc';
import { createListFilterLink, groups } from '../../utils/navigation';
import {
RulePluginOrigin,
getRulePluginOrigin,
isFederatedRuleGroup,
isGrafanaRuleIdentifier,
isPausedRule,
prometheusRuleType,
rulerRuleType,
} from '../../utils/rules';
import { AlertingPageWrapper } from '../AlertingPageWrapper';
import { ProvisionedResource, ProvisioningAlert } from '../Provisioning';
import { WithReturnButton } from '../WithReturnButton';
import { decodeGrafanaNamespace } from '../expressions/util';
import { RedirectToCloneRule } from '../rules/CloneRule';
import { ContactPointLink } from './ContactPointLink';
import { FederatedRuleWarning } from './FederatedRuleWarning';
import { useAlertRule } from './RuleContext';
import { AlertVersionHistory } from './tabs/AlertVersionHistory';
import { Details } from './tabs/Details';
import { History } from './tabs/History';
import { InstancesList } from './tabs/Instances';
import { QueryResults } from './tabs/Query';
import { Routing } from './tabs/Routing';
import { RulePageEnrichmentSectionExtension } from './tabs/extensions/RuleViewerExtension';
export enum ActiveTab {
Query = 'query',
Instances = 'instances',
History = 'history',
Routing = 'routing',
Details = 'details',
VersionHistory = 'version-history',
Enrichment = 'enrichment',
}
const prometheusRulesPrimary = shouldUsePrometheusRulesPrimary();
const alertingListViewV2 = shouldUseAlertingListViewV2();
const RuleViewer = () => {
const { rule, identifier } = useAlertRule();
const { pageNav, activeTab } = usePageNav(rule);
const styles = useStyles2(getStyles);
// GMA /api/v1/rules endpoint is strongly consistent, so we don't need to check for consistency
const shouldUseConsistencyCheck = isGrafanaRuleIdentifier(identifier)
? false
: prometheusRulesPrimary || alertingListViewV2;
// this will be used to track if we are in the process of cloning a rule
// we want to be able to show a modal if the rule has been provisioned explain the limitations
// of duplicating provisioned alert rules
const [duplicateRuleIdentifier, setDuplicateRuleIdentifier] = useState<RuleIdentifier>();
const { returnTo } = useReturnTo('/alerting/list');
const { annotations, promRule, rulerRule } = rule;
const hasError = isErrorHealth(promRule?.health);
const isFederatedRule = isFederatedRuleGroup(rule.group);
const isProvisioned = rulerRuleType.grafana.rule(rulerRule) && Boolean(rulerRule.grafana_alert.provenance);
const isPaused = rulerRuleType.grafana.rule(rulerRule) && isPausedRule(rulerRule);
const showError = hasError && !isPaused;
const ruleOrigin = rulerRule ? getRulePluginOrigin(rulerRule) : getRulePluginOrigin(promRule);
const summary = annotations[Annotation.summary];
return (
<AlertingPageWrapper
pageNav={pageNav}
navId="alert-list"
isLoading={false}
renderTitle={(title) => (
<Title
name={title}
paused={isPaused}
state={prometheusRuleType.alertingRule(promRule) ? promRule.state : undefined}
health={promRule?.health}
ruleType={promRule?.type}
ruleOrigin={ruleOrigin}
returnToHref={returnTo}
/>
)}
actions={<RuleActionsButtons rule={rule} rulesSource={rule.namespace.rulesSource} />}
info={createMetadata(rule, styles)}
subTitle={
<Stack direction="column">
{summary}
{/* alerts and notifications and stuff */}
{isPaused && <InfoPausedRule />}
{isFederatedRule && <FederatedRuleWarning />}
{/* indicator for rules in a provisioned group */}
{isProvisioned && (
<ProvisioningAlert resource={ProvisionedResource.AlertRule} bottomSpacing={0} topSpacing={2} />
)}
{/* error state */}
{showError && (
<Alert
title={t(
'alerting.rule-viewer.title-something-wrong-evaluating-alert',
'Something went wrong when evaluating this alert rule'
)}
bottomSpacing={0}
topSpacing={2}
>
<pre style={{ marginBottom: 0 }}>
<code>{rule.promRule?.lastError ?? 'No error message'}</code>
</pre>
</Alert>
)}
</Stack>
}
>
{shouldUseConsistencyCheck && <PrometheusConsistencyCheck ruleIdentifier={identifier} />}
<Stack direction="column" gap={2}>
{/* tabs and tab content */}
<TabContent>
{activeTab === ActiveTab.Query && <QueryResults rule={rule} />}
{activeTab === ActiveTab.Instances && <InstancesList rule={rule} />}
{activeTab === ActiveTab.History && rulerRuleType.grafana.rule(rule.rulerRule) && (
<History rule={rule.rulerRule} />
)}
{activeTab === ActiveTab.Routing && <Routing />}
{activeTab === ActiveTab.Details && <Details rule={rule} />}
{activeTab === ActiveTab.VersionHistory && rulerRuleType.grafana.rule(rule.rulerRule) && (
<AlertVersionHistory rule={rule.rulerRule} />
)}
{activeTab === ActiveTab.Enrichment && rule.uid && <RulePageEnrichmentSectionExtension ruleUid={rule.uid} />}
</TabContent>
</Stack>
{duplicateRuleIdentifier && (
<RedirectToCloneRule
redirectTo={true}
identifier={duplicateRuleIdentifier}
isProvisioned={isProvisioned}
onDismiss={() => setDuplicateRuleIdentifier(undefined)}
/>
)}
</AlertingPageWrapper>
);
};
const createMetadata = (rule: CombinedRule, styles: ReturnType<typeof getStyles>): PageInfoItem[] => {
const { labels, annotations, group, rulerRule } = rule;
const metadata: PageInfoItem[] = [];
const runbookUrl = annotations[Annotation.runbookURL];
const dashboardUID = annotations[Annotation.dashboardUID];
const panelID = annotations[Annotation.panelID];
const hasDashboardAndPanel = dashboardUID && panelID;
const hasDashboard = dashboardUID;
const hasLabels = labelsSize(labels) > 0;
const interval = group.interval;
// if the alert rule uses simplified routing, we'll show a link to the contact point
if (rulerRuleType.grafana.alertingRule(rulerRule)) {
const contactPointName = rulerRule.grafana_alert.notification_settings?.receiver;
if (contactPointName) {
metadata.push({
label: t('alerting.create-metadata.label.contact-point', 'Notifications are delivered to'),
value: <ContactPointLink name={contactPointName} variant="bodySmall" />,
});
}
}
if (runbookUrl) {
/* TODO instead of truncating the string, we should use flex and text overflow properly to allow it to take up all of the horizontal space available */
const truncatedUrl = truncate(runbookUrl, { length: 42 });
const valueToAdd = isValidRunbookURL(runbookUrl) ? (
<TextLink variant="bodySmall" className={styles.url} href={runbookUrl} external>
{truncatedUrl}
</TextLink>
) : (
<Text variant="bodySmall">{truncatedUrl}</Text>
);
metadata.push({
label: t('alerting.create-metadata.label.runbook-url', 'Runbook URL'),
value: valueToAdd,
});
}
if (hasDashboardAndPanel) {
metadata.push({
label: t('alerting.create-metadata.label.dashboard-and-panel', 'Dashboard and panel'),
value: (
<WithReturnButton
title={rule.name}
component={
<TextLink variant="bodySmall" href={makePanelLink(dashboardUID, panelID)}>
<Trans i18nKey="alerting.create-metadata.view-panel">View panel</Trans>
</TextLink>
}
/>
),
});
} else if (hasDashboard) {
metadata.push({
label: t('alerting.create-metadata.label.dashboard', 'Dashboard'),
value: (
<WithReturnButton
title={rule.name}
component={
<TextLink title={rule.name} variant="bodySmall" href={makeDashboardLink(dashboardUID)}>
<Trans i18nKey="alerting.create-metadata.view-dashboard">View dashboard</Trans>
</TextLink>
}
/>
),
});
}
if (rulerRuleType.grafana.recordingRule(rule.rulerRule)) {
const metric = rule.rulerRule?.grafana_alert.record?.metric ?? '';
metadata.push({
label: t('alerting.create-metadata.label.metric-name', 'Metric name'),
value: <Text color="primary">{metric}</Text>,
});
}
if (interval) {
metadata.push({
label: t('alerting.create-metadata.label.evaluation-interval', 'Evaluation interval'),
value: (
<Text color="primary">
<Trans i18nKey="alerting.rule-viewer.evaluation-interval">Every {{ interval }}</Trans>
</Text>
),
});
}
if (hasLabels) {
metadata.push({
label: t('alerting.create-metadata.label.labels', 'Labels'),
/* TODO truncate number of labels, maybe build in to component? */
value: <AlertLabels labels={labels} size="sm" />,
});
}
return metadata;
};
interface TitleProps {
name: string;
paused?: boolean;
// recording rules don't have a state
state?: PromAlertingRuleState;
health?: RuleHealth;
ruleType?: PromRuleType;
ruleOrigin?: RulePluginOrigin;
returnToHref?: string;
}
export const Title = ({ name, paused = false, state, health, ruleType, ruleOrigin, returnToHref = '' }: TitleProps) => {
const isRecordingRule = ruleType === PromRuleType.Recording;
const { returnTo } = useReturnTo(returnToHref);
const textHealth = normalizeHealth(health);
const textState = normalizeState(state);
return (
<Stack direction="row" gap={1} minWidth={0} alignItems="center">
{returnToHref && (
<LinkButton
aria-label={t('alerting.rule-viewer.aria-label-return-to', 'Return to previous view')}
variant="secondary"
icon="angle-left"
href={returnTo}
/>
)}
{ruleOrigin && <PluginOriginBadge pluginId={ruleOrigin.pluginId} size="lg" />}
<Text variant="h1" truncate>
{name}
</Text>
{/* recording rules won't have a state */}
{state && <StateText type="alerting" state={textState} health={textHealth} isPaused={paused} />}
{isRecordingRule && <StateText type="recording" health={textHealth} isPaused={paused} />}
</Stack>
);
};
interface PrometheusConsistencyCheckProps {
ruleIdentifier: RuleIdentifier;
}
/**
* This component displays an Alert warning component if discovers inconsistencies between Prometheus and Ruler rules
* It will show loading indicator until the Prometheus and Ruler rule is consistent
* It will not show the warning if the rule is Grafana managed
*/
const PrometheusConsistencyCheck = withErrorBoundary(
({ ruleIdentifier }: PrometheusConsistencyCheckProps) => {
const [ref, { width }] = useMeasure<HTMLDivElement>();
const { hasRuler } = useHasRulerV2(ruleIdentifierToRuleSourceIdentifier(ruleIdentifier).uid);
const { result: ruleLocation } = useRuleLocation(ruleIdentifier);
const { waitForGroupConsistency, groupConsistent } = useRuleGroupConsistencyCheck();
const [waitAction, waitState] = useAsync((groupIdentifier: RuleGroupIdentifierV2) => {
return waitForGroupConsistency(groupIdentifier);
});
useEffect(() => {
if (ruleLocation && hasRuler) {
waitAction.execute(ruleLocation.groupIdentifier);
}
}, [ruleLocation, hasRuler, waitAction]);
if (isError(waitState)) {
return (
<Alert
title={t(
'alerting.prometheus-consistency-check.title-unable-to-check-the-rule-status',
'Unable to check the rule status'
)}
bottomSpacing={0}
topSpacing={2}
>
{stringifyErrorLike(waitState.error)}
</Alert>
);
}
// If groupConsistent is undefined, it means that the rule is still being checked and we don't know if it's consistent or not
// To prevent the inconsistency banner from blinking, we only show it if groupConsistent is false
if (groupConsistent === false) {
return (
<Stack direction="column" gap={0} ref={ref}>
<LoadingBar width={width} />
<Alert
title={t('alerting.rule-viewer.prometheus-consistency-check.alert-title', 'Update in progress')}
severity="info"
>
<Trans i18nKey="alerting.rule-viewer.prometheus-consistency-check.alert-message">
Alert rule has been added or updated. Changes may take up to a minute to appear on the Alert rules list
view.
</Trans>
</Alert>
</Stack>
);
}
return null;
},
{ errorLogger: logError }
);
export const isErrorHealth = (health?: RuleHealth) => health === 'error' || health === 'err';
export function useActiveTab(): [ActiveTab, (tab: ActiveTab) => void] {
const [queryParams, setQueryParams] = useQueryParams();
const tabFromQuery = queryParams.tab;
const activeTab = isValidTab(tabFromQuery) ? tabFromQuery : ActiveTab.Query;
const setActiveTab = (tab: ActiveTab) => {
setQueryParams({ tab });
};
return [activeTab, setActiveTab];
}
function isValidTab(tab: UrlQueryValue): tab is ActiveTab {
const isString = typeof tab === 'string';
// @ts-ignore
return isString && Object.values(ActiveTab).includes(tab);
}
function usePageNav(rule: CombinedRule) {
const [activeTab, setActiveTab] = useActiveTab();
const { annotations, promRule, rulerRule } = rule;
const summary = annotations[Annotation.summary];
const isAlertType = prometheusRuleType.alertingRule(promRule);
const numberOfInstance = isAlertType ? calculateTotalInstances(rule.instanceTotals) : undefined;
const namespaceName = decodeGrafanaNamespace(rule.namespace).name;
const groupName = rule.group.name;
const isGrafanaAlertRule = rulerRuleType.grafana.alertingRule(rulerRule);
const isGrafanaRecordingRule = rulerRuleType.grafana.recordingRule(rulerRule);
const isRecordingRuleType = prometheusRuleType.recordingRule(promRule);
const dataSourceUID = getRulesSourceUid(rule.namespace.rulesSource);
const namespaceString = getNamespaceString(rule);
const groupDetailsUrl = groups.detailsPageLink(dataSourceUID, namespaceString, groupName);
const setActiveTabFromString = (tab: string) => {
if (isValidTab(tab)) {
setActiveTab(tab);
}
};
const pageNav: NavModelItem = {
...defaultPageNav,
text: rule.name,
subTitle: summary,
children: [
{
text: t('alerting.use-page-nav.page-nav.text.query-and-conditions', 'Query and conditions'),
active: activeTab === ActiveTab.Query,
onClick: () => {
setActiveTab(ActiveTab.Query);
},
},
{
text: t('alerting.use-page-nav.page-nav.text.instances', 'Instances'),
active: activeTab === ActiveTab.Instances,
onClick: () => {
setActiveTab(ActiveTab.Instances);
},
tabCounter: numberOfInstance,
hideFromTabs: isRecordingRuleType,
},
{
text: t('alerting.use-page-nav.page-nav.text.history', 'History'),
active: activeTab === ActiveTab.History,
onClick: () => {
setActiveTab(ActiveTab.History);
},
// alert state history is only available for Grafana managed alert rules
hideFromTabs: !isGrafanaAlertRule,
},
{
text: t('alerting.use-page-nav.page-nav.text.details', 'Details'),
active: activeTab === ActiveTab.Details,
onClick: () => {
setActiveTab(ActiveTab.Details);
},
},
// Enterprise extensions (e.g. Alert enrichment) should appear after Details
...useRuleViewExtensionsNav(activeTab, setActiveTabFromString),
{
text: t('alerting.use-page-nav.page-nav.text.versions', 'Versions'),
active: activeTab === ActiveTab.VersionHistory,
onClick: () => {
setActiveTab(ActiveTab.VersionHistory);
},
hideFromTabs: !isGrafanaAlertRule && !isGrafanaRecordingRule,
},
],
parentItem: {
text: groupName,
url: groupDetailsUrl,
// @TODO support nested folders here
parentItem: {
text: namespaceName,
url: createListFilterLink([['namespace', namespaceName]]),
},
},
};
return {
pageNav,
activeTab,
};
}
export const calculateTotalInstances = (stats: AlertInstanceTotals) => {
return chain(stats)
.pick([
AlertInstanceTotalState.Alerting,
AlertInstanceTotalState.Pending,
AlertInstanceTotalState.Recovering,
AlertInstanceTotalState.Normal,
AlertInstanceTotalState.NoData,
AlertInstanceTotalState.Error,
])
.values()
.sum()
.value();
};
const getStyles = () => ({
url: css({
wordBreak: 'break-all',
}),
});
function isValidRunbookURL(url: string) {
const isRelative = url.startsWith('/');
let isAbsolute = false;
try {
new URL(url);
isAbsolute = true;
} catch (_) {
return false;
}
return isRelative || isAbsolute;
}
function getNamespaceString(rule: CombinedRule): string {
// try rule.namespace.uid
if (rule.namespace.uid) {
return rule.namespace.uid;
}
// if datasource managed, use rule.namespace.name;
const isDataSourceManagedRulerRule = rulerRuleType.dataSource.rule(rule.rulerRule);
const isDataSourceManagedPromRule =
prometheusRuleType.rule(rule.promRule) && !prometheusRuleType.grafana.rule(rule.promRule);
if (isDataSourceManagedRulerRule || isDataSourceManagedPromRule) {
return rule.namespace.name;
}
// try rulerRule definition if grafana ruler rule;
if (rulerRuleType.grafana.rule(rule.rulerRule)) {
return rule.rulerRule?.grafana_alert.namespace_uid;
}
// try promRule definition if grafana prom rule;
if (prometheusRuleType.grafana.rule(rule.promRule)) {
return rule.promRule.folderUid;
}
// fell back to whatever the name is of the namespace assigned to the combined rule
return rule.namespace.name;
}
export default RuleViewer;