2017-12-20 12:33:33 +01:00
|
|
|
import * as graphitePlugin from 'app/plugins/datasource/graphite/module';
|
|
|
|
|
import * as cloudwatchPlugin from 'app/plugins/datasource/cloudwatch/module';
|
|
|
|
|
import * as elasticsearchPlugin from 'app/plugins/datasource/elasticsearch/module';
|
|
|
|
|
import * as opentsdbPlugin from 'app/plugins/datasource/opentsdb/module';
|
|
|
|
|
import * as grafanaPlugin from 'app/plugins/datasource/grafana/module';
|
|
|
|
|
import * as influxdbPlugin from 'app/plugins/datasource/influxdb/module';
|
2018-12-05 23:13:57 +01:00
|
|
|
import * as lokiPlugin from 'app/plugins/datasource/loki/module';
|
2017-12-20 12:33:33 +01:00
|
|
|
import * as mixedPlugin from 'app/plugins/datasource/mixed/module';
|
|
|
|
|
import * as mysqlPlugin from 'app/plugins/datasource/mysql/module';
|
|
|
|
|
import * as postgresPlugin from 'app/plugins/datasource/postgres/module';
|
|
|
|
|
import * as prometheusPlugin from 'app/plugins/datasource/prometheus/module';
|
2017-12-02 14:40:12 +03:00
|
|
|
import * as mssqlPlugin from 'app/plugins/datasource/mssql/module';
|
2018-07-16 03:12:13 -07:00
|
|
|
import * as testDataDSPlugin from 'app/plugins/datasource/testdata/module';
|
2019-04-12 10:13:36 -07:00
|
|
|
import * as inputDatasourcePlugin from 'app/plugins/datasource/input/module';
|
2018-09-04 13:23:14 +02:00
|
|
|
import * as stackdriverPlugin from 'app/plugins/datasource/stackdriver/module';
|
2018-12-18 14:54:41 +01:00
|
|
|
import * as azureMonitorPlugin from 'app/plugins/datasource/grafana-azure-monitor-datasource/module';
|
2017-10-03 11:02:40 +02:00
|
|
|
|
2017-12-20 12:33:33 +01:00
|
|
|
import * as textPanel from 'app/plugins/panel/text/module';
|
2018-01-02 14:52:30 +01:00
|
|
|
import * as text2Panel from 'app/plugins/panel/text2/module';
|
2018-07-09 18:17:51 +02:00
|
|
|
import * as graph2Panel from 'app/plugins/panel/graph2/module';
|
2017-12-20 12:33:33 +01:00
|
|
|
import * as graphPanel from 'app/plugins/panel/graph/module';
|
|
|
|
|
import * as dashListPanel from 'app/plugins/panel/dashlist/module';
|
|
|
|
|
import * as pluginsListPanel from 'app/plugins/panel/pluginlist/module';
|
|
|
|
|
import * as alertListPanel from 'app/plugins/panel/alertlist/module';
|
2019-07-09 09:28:19 -07:00
|
|
|
import * as annoListPanel from 'app/plugins/panel/annolist/module';
|
2017-12-20 12:33:33 +01:00
|
|
|
import * as heatmapPanel from 'app/plugins/panel/heatmap/module';
|
|
|
|
|
import * as tablePanel from 'app/plugins/panel/table/module';
|
2019-03-05 16:07:46 -08:00
|
|
|
import * as table2Panel from 'app/plugins/panel/table2/module';
|
2017-12-20 12:33:33 +01:00
|
|
|
import * as singlestatPanel from 'app/plugins/panel/singlestat/module';
|
2019-03-14 13:20:24 -07:00
|
|
|
import * as singlestatPanel2 from 'app/plugins/panel/singlestat2/module';
|
2017-12-20 12:33:33 +01:00
|
|
|
import * as gettingStartedPanel from 'app/plugins/panel/gettingstarted/module';
|
2018-11-08 16:40:53 +01:00
|
|
|
import * as gaugePanel from 'app/plugins/panel/gauge/module';
|
2019-03-08 13:51:25 +03:00
|
|
|
import * as pieChartPanel from 'app/plugins/panel/piechart/module';
|
2019-02-15 12:55:35 +01:00
|
|
|
import * as barGaugePanel from 'app/plugins/panel/bargauge/module';
|
2017-10-12 17:38:49 +02:00
|
|
|
|
2019-04-15 07:54:00 -07:00
|
|
|
import * as exampleApp from 'app/plugins/app/example-app/module';
|
|
|
|
|
|
2019-07-18 08:03:04 +02:00
|
|
|
const builtInPlugins: any = {
|
2017-12-20 12:33:33 +01:00
|
|
|
'app/plugins/datasource/graphite/module': graphitePlugin,
|
|
|
|
|
'app/plugins/datasource/cloudwatch/module': cloudwatchPlugin,
|
|
|
|
|
'app/plugins/datasource/elasticsearch/module': elasticsearchPlugin,
|
|
|
|
|
'app/plugins/datasource/opentsdb/module': opentsdbPlugin,
|
|
|
|
|
'app/plugins/datasource/grafana/module': grafanaPlugin,
|
|
|
|
|
'app/plugins/datasource/influxdb/module': influxdbPlugin,
|
2018-12-05 23:13:57 +01:00
|
|
|
'app/plugins/datasource/loki/module': lokiPlugin,
|
2017-12-20 12:33:33 +01:00
|
|
|
'app/plugins/datasource/mixed/module': mixedPlugin,
|
|
|
|
|
'app/plugins/datasource/mysql/module': mysqlPlugin,
|
|
|
|
|
'app/plugins/datasource/postgres/module': postgresPlugin,
|
2018-01-03 10:47:21 +03:00
|
|
|
'app/plugins/datasource/mssql/module': mssqlPlugin,
|
2017-12-20 12:33:33 +01:00
|
|
|
'app/plugins/datasource/prometheus/module': prometheusPlugin,
|
2018-07-16 03:12:13 -07:00
|
|
|
'app/plugins/datasource/testdata/module': testDataDSPlugin,
|
2019-04-12 10:13:36 -07:00
|
|
|
'app/plugins/datasource/input/module': inputDatasourcePlugin,
|
2018-09-04 13:23:14 +02:00
|
|
|
'app/plugins/datasource/stackdriver/module': stackdriverPlugin,
|
2018-12-18 14:54:41 +01:00
|
|
|
'app/plugins/datasource/grafana-azure-monitor-datasource/module': azureMonitorPlugin,
|
2017-10-03 11:02:40 +02:00
|
|
|
|
2017-12-20 12:33:33 +01:00
|
|
|
'app/plugins/panel/text/module': textPanel,
|
2018-01-02 14:52:30 +01:00
|
|
|
'app/plugins/panel/text2/module': text2Panel,
|
2018-07-09 18:17:51 +02:00
|
|
|
'app/plugins/panel/graph2/module': graph2Panel,
|
2017-12-20 12:33:33 +01:00
|
|
|
'app/plugins/panel/graph/module': graphPanel,
|
|
|
|
|
'app/plugins/panel/dashlist/module': dashListPanel,
|
|
|
|
|
'app/plugins/panel/pluginlist/module': pluginsListPanel,
|
|
|
|
|
'app/plugins/panel/alertlist/module': alertListPanel,
|
2019-07-09 09:28:19 -07:00
|
|
|
'app/plugins/panel/annolist/module': annoListPanel,
|
2017-12-20 12:33:33 +01:00
|
|
|
'app/plugins/panel/heatmap/module': heatmapPanel,
|
|
|
|
|
'app/plugins/panel/table/module': tablePanel,
|
2019-03-05 16:07:46 -08:00
|
|
|
'app/plugins/panel/table2/module': table2Panel,
|
2017-12-20 12:33:33 +01:00
|
|
|
'app/plugins/panel/singlestat/module': singlestatPanel,
|
2019-03-14 13:20:24 -07:00
|
|
|
'app/plugins/panel/singlestat2/module': singlestatPanel2,
|
2017-12-20 12:33:33 +01:00
|
|
|
'app/plugins/panel/gettingstarted/module': gettingStartedPanel,
|
2018-11-08 16:40:53 +01:00
|
|
|
'app/plugins/panel/gauge/module': gaugePanel,
|
2019-03-08 13:51:25 +03:00
|
|
|
'app/plugins/panel/piechart/module': pieChartPanel,
|
2019-02-15 12:55:35 +01:00
|
|
|
'app/plugins/panel/bargauge/module': barGaugePanel,
|
2019-04-15 07:54:00 -07:00
|
|
|
|
|
|
|
|
'app/plugins/app/example-app/module': exampleApp,
|
2017-10-03 11:02:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default builtInPlugins;
|