You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
422 B
10 lines
422 B
import { DataSourcePlugin } from '@grafana/data';
|
|
import CheatSheet from './CheatSheet';
|
|
import { ConfigEditor } from './configuration/ConfigEditor';
|
|
import { TempoDatasource } from './datasource';
|
|
import { TempoQueryField } from './QueryEditor/QueryField';
|
|
|
|
export const plugin = new DataSourcePlugin(TempoDatasource)
|
|
.setQueryEditor(TempoQueryField)
|
|
.setConfigEditor(ConfigEditor)
|
|
.setQueryEditorHelp(CheatSheet);
|
|
|