Files
grafana/public/app/plugins/datasource/jaeger/module.ts
alburthoffman cdfbcb2ec6 passing time filters (#64086)
* passing time filters

* add settings

* Cleanup and merge fixes

---------

Co-authored-by: André Pereira <adrapereira@gmail.com>
2023-07-31 16:13:48 +01:00

12 lines
417 B
TypeScript

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