You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
381 B
8 lines
381 B
import { DataSourcePlugin } from '@grafana/data';
|
|
import { ConfigEditor } from './ConfigEditor';
|
|
import { AlertManagerDatasource } from './DataSource';
|
|
|
|
// This is not actually a data source but since 7.1,
|
|
// it is required to specify query types. Which we don't have.
|
|
// @ts-ignore
|
|
export const plugin = new DataSourcePlugin(AlertManagerDatasource).setConfigEditor(ConfigEditor);
|
|
|