mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
* Adding simplified version of query editor based on app flag. * cleaned up the absolute time range. * changing placeholder text. * updated snapshot. * added some tests. * adding loki query editor tests. * updating snapshots.
21 lines
854 B
TypeScript
21 lines
854 B
TypeScript
import { DataSourcePlugin } from '@grafana/data';
|
|
import { ANNOTATION_QUERY_STEP_DEFAULT, PrometheusDatasource } from './datasource';
|
|
|
|
import PromQueryEditorByApp from './components/PromQueryEditorByApp';
|
|
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(PromQueryEditorByApp)
|
|
.setConfigEditor(ConfigEditor)
|
|
.setExploreMetricsQueryField(PromExploreQueryEditor)
|
|
.setAnnotationQueryCtrl(PrometheusAnnotationsQueryCtrl)
|
|
.setQueryEditorHelp(PromCheatSheet);
|