mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 16:15:42 -06:00
Adds a datasource selector to the Explore UI. Only datasource plugins that have `explore: true` in their `plugin.json` can be selected. - adds datasource selector (based on react-select) to explore UI - adds getExploreSources to datasource service - new `explore` flag in datasource plugins model - Prometheus plugin enabled explore
163 lines
4.0 KiB
TypeScript
163 lines
4.0 KiB
TypeScript
import _ from 'lodash';
|
|
import coreModule from 'app/core/core_module';
|
|
import config from 'app/core/config';
|
|
import { importPluginModule } from './plugin_loader';
|
|
|
|
export class DatasourceSrv {
|
|
datasources: any;
|
|
|
|
/** @ngInject */
|
|
constructor(private $injector, private $rootScope, private templateSrv) {
|
|
this.init();
|
|
}
|
|
|
|
init() {
|
|
this.datasources = {};
|
|
}
|
|
|
|
get(name?) {
|
|
if (!name) {
|
|
return this.get(config.defaultDatasource);
|
|
}
|
|
|
|
name = this.templateSrv.replace(name);
|
|
|
|
if (name === 'default') {
|
|
return this.get(config.defaultDatasource);
|
|
}
|
|
|
|
if (this.datasources[name]) {
|
|
return Promise.resolve(this.datasources[name]);
|
|
}
|
|
|
|
return this.loadDatasource(name);
|
|
}
|
|
|
|
loadDatasource(name) {
|
|
const dsConfig = config.datasources[name];
|
|
if (!dsConfig) {
|
|
return Promise.reject({ message: 'Datasource named ' + name + ' was not found' });
|
|
}
|
|
|
|
const pluginDef = dsConfig.meta;
|
|
|
|
return importPluginModule(pluginDef.module)
|
|
.then(plugin => {
|
|
// check if its in cache now
|
|
if (this.datasources[name]) {
|
|
return this.datasources[name];
|
|
}
|
|
|
|
// plugin module needs to export a constructor function named Datasource
|
|
if (!plugin.Datasource) {
|
|
throw new Error('Plugin module is missing Datasource constructor');
|
|
}
|
|
|
|
const instance = this.$injector.instantiate(plugin.Datasource, { instanceSettings: dsConfig });
|
|
instance.meta = pluginDef;
|
|
instance.name = name;
|
|
this.datasources[name] = instance;
|
|
return instance;
|
|
})
|
|
.catch(err => {
|
|
this.$rootScope.appEvent('alert-error', [dsConfig.name + ' plugin failed', err.toString()]);
|
|
});
|
|
}
|
|
|
|
getAll() {
|
|
return config.datasources;
|
|
}
|
|
|
|
getAnnotationSources() {
|
|
const sources = [];
|
|
|
|
this.addDataSourceVariables(sources);
|
|
|
|
_.each(config.datasources, function(value) {
|
|
if (value.meta && value.meta.annotations) {
|
|
sources.push(value);
|
|
}
|
|
});
|
|
|
|
return sources;
|
|
}
|
|
|
|
getExploreSources() {
|
|
const { datasources } = config;
|
|
const es = Object.keys(datasources)
|
|
.map(name => datasources[name])
|
|
.filter(ds => ds.meta && ds.meta.explore);
|
|
return _.sortBy(es, ['name']);
|
|
}
|
|
|
|
getMetricSources(options) {
|
|
var metricSources = [];
|
|
|
|
_.each(config.datasources, function(value, key) {
|
|
if (value.meta && value.meta.metrics) {
|
|
let metricSource = { value: key, name: key, meta: value.meta, sort: key };
|
|
|
|
//Make sure grafana and mixed are sorted at the bottom
|
|
if (value.meta.id === 'grafana') {
|
|
metricSource.sort = String.fromCharCode(253);
|
|
} else if (value.meta.id === 'mixed') {
|
|
metricSource.sort = String.fromCharCode(254);
|
|
}
|
|
|
|
metricSources.push(metricSource);
|
|
|
|
if (key === config.defaultDatasource) {
|
|
metricSource = { value: null, name: 'default', meta: value.meta, sort: key };
|
|
metricSources.push(metricSource);
|
|
}
|
|
}
|
|
});
|
|
|
|
if (!options || !options.skipVariables) {
|
|
this.addDataSourceVariables(metricSources);
|
|
}
|
|
|
|
metricSources.sort(function(a, b) {
|
|
if (a.sort.toLowerCase() > b.sort.toLowerCase()) {
|
|
return 1;
|
|
}
|
|
if (a.sort.toLowerCase() < b.sort.toLowerCase()) {
|
|
return -1;
|
|
}
|
|
return 0;
|
|
});
|
|
|
|
return metricSources;
|
|
}
|
|
|
|
addDataSourceVariables(list) {
|
|
// look for data source variables
|
|
for (var i = 0; i < this.templateSrv.variables.length; i++) {
|
|
var variable = this.templateSrv.variables[i];
|
|
if (variable.type !== 'datasource') {
|
|
continue;
|
|
}
|
|
|
|
var first = variable.current.value;
|
|
if (first === 'default') {
|
|
first = config.defaultDatasource;
|
|
}
|
|
|
|
var ds = config.datasources[first];
|
|
|
|
if (ds) {
|
|
const key = `$${variable.name}`;
|
|
list.push({
|
|
name: key,
|
|
value: key,
|
|
meta: ds.meta,
|
|
sort: key,
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
coreModule.service('datasourceSrv', DatasourceSrv);
|
|
export default DatasourceSrv;
|