Files
grafana/public/app/plugins/datasource/influxdb/module.ts

18 lines
697 B
TypeScript
Raw Normal View History

2017-12-20 12:33:33 +01:00
import InfluxDatasource from './datasource';
import { QueryEditor } from './components/QueryEditor';
import InfluxStartPage from './components/InfluxStartPage';
import { DataSourcePlugin } from '@grafana/data';
import ConfigEditor from './components/ConfigEditor';
import VariableQueryEditor from './components/VariableQueryEditor';
class InfluxAnnotationsQueryCtrl {
2017-12-20 12:33:33 +01:00
static templateUrl = 'partials/annotations.editor.html';
}
export const plugin = new DataSourcePlugin(InfluxDatasource)
.setConfigEditor(ConfigEditor)
.setQueryEditor(QueryEditor)
.setAnnotationQueryCtrl(InfluxAnnotationsQueryCtrl)
.setVariableQueryEditor(VariableQueryEditor)
.setQueryEditorHelp(InfluxStartPage);