grafana/public/app/plugins/panel/alertGroups/module.tsx
Alex Khomenko 18e0a060e6
AlertGroups: Generate models.gen.ts from models.cue (#61227)
* AlertGroups: Generate models.gen.ts from models.cue

* Update structure

* Update report

* Fix filenames

* Add missing file
2023-01-24 13:46:35 +02:00

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'],
});
});