2019-11-08 03:02:51 -06:00
|
|
|
import { DataSourcePlugin } from '@grafana/data';
|
2016-02-01 16:24:08 -06:00
|
|
|
|
2019-09-16 00:17:34 -05:00
|
|
|
import PromCheatSheet from './components/PromCheatSheet';
|
2022-04-22 08:33:13 -05:00
|
|
|
import PromQueryEditorByApp from './components/PromQueryEditorByApp';
|
2019-11-08 03:02:51 -06:00
|
|
|
import { ConfigEditor } from './configuration/ConfigEditor';
|
2022-05-31 04:50:23 -05:00
|
|
|
import { PrometheusDatasource } from './datasource';
|
2015-10-01 13:19:25 -05:00
|
|
|
|
2019-11-08 03:02:51 -06:00
|
|
|
export const plugin = new DataSourcePlugin(PrometheusDatasource)
|
2021-05-19 09:24:27 -05:00
|
|
|
.setQueryEditor(PromQueryEditorByApp)
|
2019-11-08 03:02:51 -06:00
|
|
|
.setConfigEditor(ConfigEditor)
|
2021-01-19 16:52:09 -06:00
|
|
|
.setQueryEditorHelp(PromCheatSheet);
|