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

13 lines
530 B
TypeScript
Raw Normal View History

import { DataSourcePlugin } from '@grafana/data';
import { SQLQuery, SqlQueryEditor } from '@grafana/sql';
import { CheatSheet } from './CheatSheet';
import { MySqlDatasource } from './MySqlDatasource';
import { ConfigurationEditor } from './configuration/ConfigurationEditor';
import { MySQLOptions } from './types';
2017-03-30 02:43:20 +08:00
export const plugin = new DataSourcePlugin<MySqlDatasource, SQLQuery, MySQLOptions>(MySqlDatasource)
.setQueryEditor(SqlQueryEditor)
.setQueryEditorHelp(CheatSheet)
.setConfigEditor(ConfigurationEditor);