mirror of https://github.com/grafana/grafana.git
16 lines
646 B
TypeScript
16 lines
646 B
TypeScript
|
import { DataSourcePlugin } from '@grafana/data';
|
||
|
import { SQLQuery } from 'app/features/plugins/sql/types';
|
||
|
|
||
|
import { CheatSheet } from './CheatSheet';
|
||
|
import { PostgresQueryEditor } from './PostgresQueryEditor';
|
||
|
import { PostgresConfigEditor } from './configuration/ConfigurationEditor';
|
||
|
import { PostgresDatasource } from './datasource';
|
||
|
import { PostgresOptions, SecureJsonData } from './types';
|
||
|
|
||
|
export const plugin = new DataSourcePlugin<PostgresDatasource, SQLQuery, PostgresOptions, SecureJsonData>(
|
||
|
PostgresDatasource
|
||
|
)
|
||
|
.setQueryEditor(PostgresQueryEditor)
|
||
|
.setQueryEditorHelp(CheatSheet)
|
||
|
.setConfigEditor(PostgresConfigEditor);
|