Files
grafana-zabbix/plugins/datasource-zabbix/module.js
2016-02-11 20:55:38 +03:00

25 lines
659 B
JavaScript

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