mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Azure Monitor and Log Analytics converted and separated into components * Insights creds converted * remove angular config * fix workspaces and missing sameas key * fix workspace save * set subscriptionId key * editor fields, load workspaces btn * workspace load req fields updated * added tooltip to switch, disable buttons instead of hide * master merge and tests
11 lines
454 B
TypeScript
11 lines
454 B
TypeScript
import { DataSourcePlugin } from '@grafana/ui';
|
|
import { AzureMonitorQueryCtrl } from './query_ctrl';
|
|
import Datasource from './datasource';
|
|
import { ConfigEditor } from './ConfigEditor';
|
|
import { AzureMonitorAnnotationsQueryCtrl } from './annotations_query_ctrl';
|
|
|
|
export const plugin = new DataSourcePlugin(Datasource)
|
|
.setConfigEditor(ConfigEditor)
|
|
.setQueryCtrl(AzureMonitorQueryCtrl)
|
|
.setAnnotationQueryCtrl(AzureMonitorAnnotationsQueryCtrl);
|