grafana/public/app/plugins/datasource/opentsdb/module.js

24 lines
495 B
JavaScript

define([
'./datasource',
],
function (OpenTsDatasource) {
'use strict';
function metricsQueryEditor() {
return {
controller: 'OpenTSDBQueryCtrl',
templateUrl: 'app/plugins/datasource/opentsdb/partials/query.editor.html',
};
}
function configView() {
return {templateUrl: 'app/plugins/datasource/opentsdb/partials/config.html'};
}
return {
Datasource: OpenTsDatasource,
metricsQueryEditor: metricsQueryEditor,
configView: configView,
};
});