mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
21 lines
843 B
TypeScript
21 lines
843 B
TypeScript
import { DataSourcePlugin } from '@grafana/data';
|
|
import { ANNOTATION_QUERY_STEP_DEFAULT, PrometheusDatasource } from './datasource';
|
|
|
|
import { PromQueryEditor } from './components/PromQueryEditor';
|
|
import PromCheatSheet from './components/PromCheatSheet';
|
|
import PromExploreQueryEditor from './components/PromExploreQueryEditor';
|
|
|
|
import { ConfigEditor } from './configuration/ConfigEditor';
|
|
|
|
class PrometheusAnnotationsQueryCtrl {
|
|
static templateUrl = 'partials/annotations.editor.html';
|
|
stepDefaultValuePlaceholder = ANNOTATION_QUERY_STEP_DEFAULT;
|
|
}
|
|
|
|
export const plugin = new DataSourcePlugin(PrometheusDatasource)
|
|
.setQueryEditor(PromQueryEditor)
|
|
.setConfigEditor(ConfigEditor)
|
|
.setExploreMetricsQueryField(PromExploreQueryEditor)
|
|
.setAnnotationQueryCtrl(PrometheusAnnotationsQueryCtrl)
|
|
.setQueryEditorHelp(PromCheatSheet);
|