Files
grafana-zabbix/plugins/datasource-zabbix/module.js
Alexander Zobnin bc042bd1d9 Iss #152 - fixed query editor.
Query editor now use app/plugins/sdk for work. Fixed controller
and template.
2016-02-10 22:48:53 +03:00

28 lines
697 B
JavaScript

define([
'./datasource',
'./queryCtrl'
],
function (ZabbixAPIDatasource, ZabbixQueryCtrl) {
'use strict';
function ZabbixQueryOptionsCtrl() {
return {templateUrl: 'public/plugins/zabbix/partials/query.options.html'};
}
function ZabbixAnnotationsQueryCtrl() {
return {templateUrl: 'public/plugins/zabbix/partials/annotations.editor.html'};
}
function ZabbixConfigCtrl() {
return {templateUrl: 'public/plugins/zabbix/partials/config.html'};
}
return {
Datasource: ZabbixAPIDatasource,
QueryCtrl: ZabbixQueryCtrl,
ConfigCtrl: ZabbixConfigCtrl,
QueryOptionsCtrl: ZabbixQueryOptionsCtrl,
AnnotationsQueryCtrl: ZabbixAnnotationsQueryCtrl
};
});