grafana/public/app/plugins/datasource/jaeger/module.ts

8 lines
335 B
TypeScript
Raw Normal View History

import { DataSourcePlugin } from '@grafana/data';
import { ConfigEditor } from './components/ConfigEditor';
import { QueryEditor } from './components/QueryEditor';
import { JaegerDatasource } from './datasource';
export const plugin = new DataSourcePlugin(JaegerDatasource).setConfigEditor(ConfigEditor).setQueryEditor(QueryEditor);