mirror of https://github.com/grafana/grafana.git
50 lines
1.4 KiB
TypeScript
50 lines
1.4 KiB
TypeScript
import React from 'react';
|
|
|
|
import { ThresholdsMode } from '@grafana/data';
|
|
import { PanelBuilders, SceneFlexItem, SceneQueryRunner } from '@grafana/scenes';
|
|
import { DataSourceRef } from '@grafana/schema';
|
|
|
|
import { INSTANCE_ID, PANEL_STYLES } from '../../home/Insights';
|
|
import { InsightsRatingModal } from '../RatingModal';
|
|
|
|
export function getActiveGrafanaAlertsScene(datasource: DataSourceRef, panelTitle: string) {
|
|
const expr = INSTANCE_ID
|
|
? `sum by (state) (grafanacloud_grafana_instance_alerting_rule_group_rules{state="active", id="${INSTANCE_ID}"})`
|
|
: `sum by (state) (grafanacloud_grafana_instance_alerting_rule_group_rules{state="active"})`;
|
|
|
|
const query = new SceneQueryRunner({
|
|
datasource,
|
|
queries: [
|
|
{
|
|
refId: 'A',
|
|
instant: true,
|
|
expr,
|
|
},
|
|
],
|
|
});
|
|
|
|
return new SceneFlexItem({
|
|
...PANEL_STYLES,
|
|
body: PanelBuilders.stat()
|
|
.setTitle(panelTitle)
|
|
.setDescription('The number of currently active alert rules')
|
|
.setData(query)
|
|
.setThresholds({
|
|
mode: ThresholdsMode.Absolute,
|
|
steps: [
|
|
{
|
|
color: 'green',
|
|
value: 0,
|
|
},
|
|
{
|
|
color: 'green',
|
|
value: 80,
|
|
},
|
|
],
|
|
})
|
|
.setNoValue('0')
|
|
.setHeaderActions(<InsightsRatingModal panel={panelTitle} />)
|
|
.build(),
|
|
});
|
|
}
|