mirror of
https://github.com/grafana/grafana.git
synced 2025-02-03 20:21:01 -06:00
24 lines
495 B
JavaScript
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,
|
|
};
|
|
});
|