mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Implement UI for grafana-managed recording rules * use undefined for the duration instead of null , for recording rules * Fix tests * add tests * Add pause functionality for grafana recording rules * update translations * remove obsolete snapshot * use createUrl instead of renderUrl * refactor * Add validation for grafana recording rule name * create util functions for rule types and add record field in mock function * add util isDatatSourceManagedRuleByType * refactor * Add metric field in alert rule form * fix alert name component * update width for alert name and metric * fix test * add validation back to cloud recording rules name * Alerting: Recording rules PR review (#90654) Update type helper methods * add slash in createUrl * fix baseurl in the returnTo * nits * Add metric on expanded row in the alert list view * nits Co-authored-by: Tom Ratcliffe <tom.ratcliffe@grafana.com> * update snapshot --------- Co-authored-by: Tom Ratcliffe <tom.ratcliffe@grafana.com>
125 lines
3.5 KiB
TypeScript
125 lines
3.5 KiB
TypeScript
import { Fragment } from 'react';
|
|
|
|
import { textUtil } from '@grafana/data';
|
|
import { useReturnToPrevious } from '@grafana/runtime';
|
|
import { Button, LinkButton, Stack } from '@grafana/ui';
|
|
import { CombinedRule, RulesSource } from 'app/types/unified-alerting';
|
|
|
|
import { AlertRuleAction, useAlertRuleAbility } from '../../hooks/useAbilities';
|
|
import { useStateHistoryModal } from '../../hooks/useStateHistoryModal';
|
|
import { Annotation } from '../../utils/constants';
|
|
import { isCloudRulesSource } from '../../utils/datasource';
|
|
import { createExploreLink } from '../../utils/misc';
|
|
import { isFederatedRuleGroup, isGrafanaAlertingRule, isGrafanaRulerRule } from '../../utils/rules';
|
|
|
|
interface Props {
|
|
rule: CombinedRule;
|
|
rulesSource: RulesSource;
|
|
}
|
|
|
|
/**
|
|
* Buttons to display on an expanded alert rule in the list view
|
|
*
|
|
* e.g. "Show state history", "Go to dashboard"
|
|
*
|
|
* Shouldn't include *actions* for the alert rule, just navigation items
|
|
*/
|
|
const RuleDetailsButtons = ({ rule, rulesSource }: Props) => {
|
|
const { group } = rule;
|
|
const { StateHistoryModal, showStateHistoryModal } = useStateHistoryModal();
|
|
|
|
const setReturnToPrevious = useReturnToPrevious();
|
|
|
|
const [exploreSupported, exploreAllowed] = useAlertRuleAbility(rule, AlertRuleAction.Explore);
|
|
|
|
const buttons: JSX.Element[] = [];
|
|
|
|
const isFederated = isFederatedRuleGroup(group);
|
|
|
|
// explore does not support grafana rule queries atm
|
|
// neither do "federated rules"
|
|
if (isCloudRulesSource(rulesSource) && exploreSupported && exploreAllowed && !isFederated) {
|
|
buttons.push(
|
|
<LinkButton
|
|
size="sm"
|
|
key="explore"
|
|
variant="primary"
|
|
icon="chart-line"
|
|
target="_blank"
|
|
href={createExploreLink(rulesSource, rule.query)}
|
|
>
|
|
See graph
|
|
</LinkButton>
|
|
);
|
|
}
|
|
if (rule.annotations[Annotation.runbookURL]) {
|
|
buttons.push(
|
|
<LinkButton
|
|
size="sm"
|
|
key="runbook"
|
|
variant="primary"
|
|
icon="book"
|
|
target="_blank"
|
|
href={textUtil.sanitizeUrl(rule.annotations[Annotation.runbookURL])}
|
|
>
|
|
View runbook
|
|
</LinkButton>
|
|
);
|
|
}
|
|
if (rule.annotations[Annotation.dashboardUID]) {
|
|
const dashboardUID = rule.annotations[Annotation.dashboardUID];
|
|
if (dashboardUID) {
|
|
buttons.push(
|
|
<LinkButton
|
|
size="sm"
|
|
key="dashboard"
|
|
variant="primary"
|
|
icon="apps"
|
|
href={`d/${encodeURIComponent(dashboardUID)}`}
|
|
onClick={() => {
|
|
setReturnToPrevious(rule.name);
|
|
}}
|
|
>
|
|
Go to dashboard
|
|
</LinkButton>
|
|
);
|
|
const panelId = rule.annotations[Annotation.panelID];
|
|
if (panelId) {
|
|
buttons.push(
|
|
<LinkButton
|
|
size="sm"
|
|
key="panel"
|
|
variant="primary"
|
|
icon="apps"
|
|
href={`d/${encodeURIComponent(dashboardUID)}?viewPanel=${encodeURIComponent(panelId)}`}
|
|
onClick={() => {
|
|
setReturnToPrevious(rule.name);
|
|
}}
|
|
>
|
|
Go to panel
|
|
</LinkButton>
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (isGrafanaAlertingRule(rule.rulerRule)) {
|
|
buttons.push(
|
|
<Fragment key="history">
|
|
<Button
|
|
size="sm"
|
|
icon="history"
|
|
onClick={() => isGrafanaRulerRule(rule.rulerRule) && showStateHistoryModal(rule.rulerRule)}
|
|
>
|
|
Show state history
|
|
</Button>
|
|
{StateHistoryModal}
|
|
</Fragment>
|
|
);
|
|
}
|
|
|
|
return buttons.length ? <Stack>{buttons}</Stack> : null;
|
|
};
|
|
|
|
export default RuleDetailsButtons;
|