mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
21 lines
789 B
TypeScript
21 lines
789 B
TypeScript
import InfluxDatasource from './datasource';
|
|
import { InfluxQueryCtrl } from './query_ctrl';
|
|
import InfluxStartPage from './components/InfluxStartPage';
|
|
import { DataSourcePlugin } from '@grafana/data';
|
|
import ConfigEditor from './components/ConfigEditor';
|
|
import VariableQueryEditor from './components/VariableQueryEditor';
|
|
|
|
// This adds a directive that is used in the query editor
|
|
import './components/FluxQueryEditor';
|
|
|
|
class InfluxAnnotationsQueryCtrl {
|
|
static templateUrl = 'partials/annotations.editor.html';
|
|
}
|
|
|
|
export const plugin = new DataSourcePlugin(InfluxDatasource)
|
|
.setConfigEditor(ConfigEditor)
|
|
.setQueryCtrl(InfluxQueryCtrl)
|
|
.setAnnotationQueryCtrl(InfluxAnnotationsQueryCtrl)
|
|
.setVariableQueryEditor(VariableQueryEditor)
|
|
.setQueryEditorHelp(InfluxStartPage);
|