2017-12-20 05:33:33 -06: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 16:13:57 -06:00
|
|
|
import * as lokiPlugin from 'app/plugins/datasource/loki/module';
|
2017-12-20 05:33:33 -06: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 05:40:12 -06:00
|
|
|
import * as mssqlPlugin from 'app/plugins/datasource/mssql/module';
|
2018-07-16 05:12:13 -05:00
|
|
|
import * as testDataDSPlugin from 'app/plugins/datasource/testdata/module';
|
2019-04-12 12:13:36 -05:00
|
|
|
import * as inputDatasourcePlugin from 'app/plugins/datasource/input/module';
|
2018-09-04 06:23:14 -05:00
|
|
|
import * as stackdriverPlugin from 'app/plugins/datasource/stackdriver/module';
|
2018-12-18 07:54:41 -06:00
|
|
|
import * as azureMonitorPlugin from 'app/plugins/datasource/grafana-azure-monitor-datasource/module';
|
2017-10-03 04:02:40 -05:00
|
|
|
|
2017-12-20 05:33:33 -06:00
|
|
|
import * as textPanel from 'app/plugins/panel/text/module';
|
2018-01-02 07:52:30 -06:00
|
|
|
import * as text2Panel from 'app/plugins/panel/text2/module';
|
2018-07-09 11:17:51 -05:00
|
|
|
import * as graph2Panel from 'app/plugins/panel/graph2/module';
|
2017-12-20 05:33:33 -06: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';
|
|
|
|
import * as heatmapPanel from 'app/plugins/panel/heatmap/module';
|
|
|
|
import * as tablePanel from 'app/plugins/panel/table/module';
|
2019-03-05 18:07:46 -06:00
|
|
|
import * as table2Panel from 'app/plugins/panel/table2/module';
|
2017-12-20 05:33:33 -06:00
|
|
|
import * as singlestatPanel from 'app/plugins/panel/singlestat/module';
|
2019-03-14 15:20:24 -05:00
|
|
|
import * as singlestatPanel2 from 'app/plugins/panel/singlestat2/module';
|
2017-12-20 05:33:33 -06:00
|
|
|
import * as gettingStartedPanel from 'app/plugins/panel/gettingstarted/module';
|
2018-11-08 09:40:53 -06:00
|
|
|
import * as gaugePanel from 'app/plugins/panel/gauge/module';
|
2019-03-08 04:51:25 -06:00
|
|
|
import * as pieChartPanel from 'app/plugins/panel/piechart/module';
|
2019-02-15 05:55:35 -06:00
|
|
|
import * as barGaugePanel from 'app/plugins/panel/bargauge/module';
|
2017-10-12 10:38:49 -05:00
|
|
|
|
2019-04-15 09:54:00 -05:00
|
|
|
import * as exampleApp from 'app/plugins/app/example-app/module';
|
|
|
|
|
2017-10-03 04:02:40 -05:00
|
|
|
const builtInPlugins = {
|
2017-12-20 05:33:33 -06: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 16:13:57 -06:00
|
|
|
'app/plugins/datasource/loki/module': lokiPlugin,
|
2017-12-20 05:33:33 -06:00
|
|
|
'app/plugins/datasource/mixed/module': mixedPlugin,
|
|
|
|
'app/plugins/datasource/mysql/module': mysqlPlugin,
|
|
|
|
'app/plugins/datasource/postgres/module': postgresPlugin,
|
2018-01-03 01:47:21 -06:00
|
|
|
'app/plugins/datasource/mssql/module': mssqlPlugin,
|
2017-12-20 05:33:33 -06:00
|
|
|
'app/plugins/datasource/prometheus/module': prometheusPlugin,
|
2018-07-16 05:12:13 -05:00
|
|
|
'app/plugins/datasource/testdata/module': testDataDSPlugin,
|
2019-04-12 12:13:36 -05:00
|
|
|
'app/plugins/datasource/input/module': inputDatasourcePlugin,
|
2018-09-04 06:23:14 -05:00
|
|
|
'app/plugins/datasource/stackdriver/module': stackdriverPlugin,
|
2018-12-18 07:54:41 -06:00
|
|
|
'app/plugins/datasource/grafana-azure-monitor-datasource/module': azureMonitorPlugin,
|
2017-10-03 04:02:40 -05:00
|
|
|
|
2017-12-20 05:33:33 -06:00
|
|
|
'app/plugins/panel/text/module': textPanel,
|
2018-01-02 07:52:30 -06:00
|
|
|
'app/plugins/panel/text2/module': text2Panel,
|
2018-07-09 11:17:51 -05:00
|
|
|
'app/plugins/panel/graph2/module': graph2Panel,
|
2017-12-20 05:33:33 -06: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,
|
|
|
|
'app/plugins/panel/heatmap/module': heatmapPanel,
|
|
|
|
'app/plugins/panel/table/module': tablePanel,
|
2019-03-05 18:07:46 -06:00
|
|
|
'app/plugins/panel/table2/module': table2Panel,
|
2017-12-20 05:33:33 -06:00
|
|
|
'app/plugins/panel/singlestat/module': singlestatPanel,
|
2019-03-14 15:20:24 -05:00
|
|
|
'app/plugins/panel/singlestat2/module': singlestatPanel2,
|
2017-12-20 05:33:33 -06:00
|
|
|
'app/plugins/panel/gettingstarted/module': gettingStartedPanel,
|
2018-11-08 09:40:53 -06:00
|
|
|
'app/plugins/panel/gauge/module': gaugePanel,
|
2019-03-08 04:51:25 -06:00
|
|
|
'app/plugins/panel/piechart/module': pieChartPanel,
|
2019-02-15 05:55:35 -06:00
|
|
|
'app/plugins/panel/bargauge/module': barGaugePanel,
|
2019-04-15 09:54:00 -05:00
|
|
|
|
|
|
|
'app/plugins/app/example-app/module': exampleApp,
|
2017-10-03 04:02:40 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
export default builtInPlugins;
|