mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* AlertGroups: Generate models.gen.ts from models.cue * Update structure * Update report * Fix filenames * Add missing file
48 lines
1.5 KiB
TypeScript
48 lines
1.5 KiB
TypeScript
import React, { useMemo } from 'react';
|
|
|
|
import { PanelPlugin } from '@grafana/data';
|
|
import { AlertManagerPicker } from 'app/features/alerting/unified/components/AlertManagerPicker';
|
|
import {
|
|
getAllAlertManagerDataSources,
|
|
GRAFANA_RULES_SOURCE_NAME,
|
|
} from 'app/features/alerting/unified/utils/datasource';
|
|
|
|
import { AlertGroupsPanel } from './AlertGroupsPanel';
|
|
import { PanelOptions } from './panelcfg.gen';
|
|
|
|
export const plugin = new PanelPlugin<PanelOptions>(AlertGroupsPanel).setPanelOptions((builder) => {
|
|
return builder
|
|
.addCustomEditor({
|
|
name: 'Alertmanager',
|
|
path: 'alertmanager',
|
|
id: 'alertmanager',
|
|
defaultValue: GRAFANA_RULES_SOURCE_NAME,
|
|
category: ['Options'],
|
|
editor: function RenderAlertmanagerPicker(props) {
|
|
const alertManagers = useMemo(getAllAlertManagerDataSources, []);
|
|
|
|
return (
|
|
<AlertManagerPicker
|
|
current={props.value}
|
|
onChange={(alertManagerSourceName) => {
|
|
return props.onChange(alertManagerSourceName);
|
|
}}
|
|
dataSources={alertManagers}
|
|
/>
|
|
);
|
|
},
|
|
})
|
|
.addBooleanSwitch({
|
|
name: 'Expand all by default',
|
|
path: 'expandAll',
|
|
defaultValue: false,
|
|
category: ['Options'],
|
|
})
|
|
.addTextInput({
|
|
description: 'Filter results by matching labels, ex: env=production,severity=~critical|warning',
|
|
name: 'Labels',
|
|
path: 'labels',
|
|
category: ['Filter'],
|
|
});
|
|
});
|