2017-10-03 17:02:40 +08: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';
|
|
|
|
import * as mixedPlugin from 'app/plugins/datasource/mixed/module';
|
|
|
|
import * as mysqlPlugin from 'app/plugins/datasource/mysql/module';
|
2017-10-10 21:19:14 +08:00
|
|
|
import * as postgresPlugin from 'app/plugins/datasource/postgres/module';
|
2017-10-03 17:02:40 +08:00
|
|
|
import * as prometheusPlugin from 'app/plugins/datasource/prometheus/module';
|
2017-12-02 19:40:12 +08:00
|
|
|
import * as mssqlPlugin from 'app/plugins/datasource/mssql/module';
|
2017-10-03 17:02:40 +08:00
|
|
|
|
|
|
|
import * as textPanel from 'app/plugins/panel/text/module';
|
|
|
|
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';
|
|
|
|
import * as singlestatPanel from 'app/plugins/panel/singlestat/module';
|
|
|
|
import * as gettingStartedPanel from 'app/plugins/panel/gettingstarted/module';
|
2017-10-12 23:38:49 +08:00
|
|
|
|
2017-10-03 17:02:40 +08:00
|
|
|
import * as testDataAppPlugin from 'app/plugins/app/testdata/module';
|
|
|
|
import * as testDataDSPlugin from 'app/plugins/app/testdata/datasource/module';
|
|
|
|
|
|
|
|
const builtInPlugins = {
|
|
|
|
"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,
|
|
|
|
"app/plugins/datasource/mixed/module": mixedPlugin,
|
|
|
|
"app/plugins/datasource/mysql/module": mysqlPlugin,
|
2017-10-10 21:19:14 +08:00
|
|
|
"app/plugins/datasource/postgres/module": postgresPlugin,
|
2017-12-02 19:40:12 +08:00
|
|
|
"app/plugins/datasource/mssql/module": mssqlPlugin,
|
2018-01-03 15:33:54 +08:00
|
|
|
"app/plugins/datasource/prometheus/module": prometheusPlugin,
|
2017-10-03 17:02:40 +08:00
|
|
|
"app/plugins/app/testdata/module": testDataAppPlugin,
|
|
|
|
"app/plugins/app/testdata/datasource/module": testDataDSPlugin,
|
|
|
|
|
2017-12-20 19:33:33 +08:00
|
|
|
'app/plugins/panel/text/module': textPanel,
|
|
|
|
'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,
|
|
|
|
'app/plugins/panel/singlestat/module': singlestatPanel,
|
|
|
|
'app/plugins/panel/gettingstarted/module': gettingStartedPanel,
|
2017-10-03 17:02:40 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
export default builtInPlugins;
|