import { DataSourcePlugin } from '@grafana/data'; import { ConfigEditor } from './components/ConfigEditor'; import { CloudWatchDatasource } from './datasource'; import { CloudWatchAnnotationsQueryCtrl } from './annotations_query_ctrl'; import { CloudWatchJsonData, CloudWatchQuery } from './types'; import { CloudWatchLogsQueryEditor } from './components/LogsQueryEditor'; import { PanelQueryEditor } from './components/PanelQueryEditor'; import { MetaInspector } from './components/MetaInspector'; import LogsCheatSheet from './components/LogsCheatSheet'; export const plugin = new DataSourcePlugin( CloudWatchDatasource ) .setQueryEditorHelp(LogsCheatSheet) .setConfigEditor(ConfigEditor) .setQueryEditor(PanelQueryEditor) .setMetadataInspector(MetaInspector) .setExploreMetricsQueryField(PanelQueryEditor) .setExploreLogsQueryField(CloudWatchLogsQueryEditor) .setAnnotationQueryCtrl(CloudWatchAnnotationsQueryCtrl);