Merge branch 'cache-service' into grafana-3.0
Conflicts: plugins/datasource-zabbix/datasource.js
This commit is contained in:
@@ -5,6 +5,7 @@ define([
|
|||||||
'./directives',
|
'./directives',
|
||||||
'./zabbixAPIWrapper',
|
'./zabbixAPIWrapper',
|
||||||
'./helperFunctions',
|
'./helperFunctions',
|
||||||
|
'./zabbixCacheSrv',
|
||||||
'./queryCtrl'
|
'./queryCtrl'
|
||||||
],
|
],
|
||||||
function (angular, _, dateMath) {
|
function (angular, _, dateMath) {
|
||||||
@@ -12,7 +13,7 @@ function (angular, _, dateMath) {
|
|||||||
|
|
||||||
/** @ngInject */
|
/** @ngInject */
|
||||||
function ZabbixAPIDatasource(instanceSettings, $q, backendSrv, templateSrv, alertSrv,
|
function ZabbixAPIDatasource(instanceSettings, $q, backendSrv, templateSrv, alertSrv,
|
||||||
ZabbixAPI, zabbixHelperSrv) {
|
ZabbixAPI, zabbixHelperSrv, ZabbixCache) {
|
||||||
|
|
||||||
// General data source settings
|
// General data source settings
|
||||||
this.name = instanceSettings.name;
|
this.name = instanceSettings.name;
|
||||||
@@ -31,6 +32,9 @@ function (angular, _, dateMath) {
|
|||||||
// Initialize Zabbix API
|
// Initialize Zabbix API
|
||||||
this.zabbixAPI = new ZabbixAPI(this.url, this.username, this.password, this.basicAuth, this.withCredentials);
|
this.zabbixAPI = new ZabbixAPI(this.url, this.username, this.password, this.basicAuth, this.withCredentials);
|
||||||
|
|
||||||
|
// Initialize cache service
|
||||||
|
this.zabbixCache = new ZabbixCache(this.zabbixAPI);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test connection to Zabbix API
|
* Test connection to Zabbix API
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -113,6 +113,49 @@ function (angular, _) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
//////////////////////////
|
||||||
|
// High-level functions //
|
||||||
|
//////////////////////////
|
||||||
|
|
||||||
|
p.getGroups = function() {
|
||||||
|
var params = {
|
||||||
|
output: ['name'],
|
||||||
|
sortfield: 'name'
|
||||||
|
};
|
||||||
|
|
||||||
|
return this.performZabbixAPIRequest('hostgroup.get', params);
|
||||||
|
};
|
||||||
|
|
||||||
|
p.getHosts = function() {
|
||||||
|
var params = {
|
||||||
|
output: ['name', 'host'],
|
||||||
|
sortfield: 'name',
|
||||||
|
selectGroups: []
|
||||||
|
};
|
||||||
|
|
||||||
|
return this.performZabbixAPIRequest('host.get', params);
|
||||||
|
};
|
||||||
|
|
||||||
|
p.getApplications = function() {
|
||||||
|
var params = {
|
||||||
|
output: ['name'],
|
||||||
|
sortfield: 'name',
|
||||||
|
selectHosts: []
|
||||||
|
};
|
||||||
|
|
||||||
|
return this.performZabbixAPIRequest('application.get', params);
|
||||||
|
};
|
||||||
|
|
||||||
|
p.getItems = function() {
|
||||||
|
var params = {
|
||||||
|
output: ['name', 'key_', 'value_type', 'hostid', 'status', 'state'],
|
||||||
|
sortfield: 'name',
|
||||||
|
selectApplications: []
|
||||||
|
};
|
||||||
|
|
||||||
|
return this.performZabbixAPIRequest('item.get', params);
|
||||||
|
};
|
||||||
|
|
||||||
/////////////////////////
|
/////////////////////////
|
||||||
// API method wrappers //
|
// API method wrappers //
|
||||||
/////////////////////////
|
/////////////////////////
|
||||||
|
|||||||
89
plugins/datasource-zabbix/zabbixCacheSrv.js
Normal file
89
plugins/datasource-zabbix/zabbixCacheSrv.js
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
define([
|
||||||
|
'angular',
|
||||||
|
'lodash'
|
||||||
|
],
|
||||||
|
function (angular, _) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var module = angular.module('grafana.services');
|
||||||
|
|
||||||
|
module.factory('ZabbixCache', function($q, backendSrv) {
|
||||||
|
|
||||||
|
function ZabbixCache(zabbixAPI, lifetime) {
|
||||||
|
var self = this;
|
||||||
|
|
||||||
|
this.zabbixAPI = zabbixAPI;
|
||||||
|
this.lifetime = lifetime;
|
||||||
|
|
||||||
|
this._groups = [];
|
||||||
|
this._hosts = [];
|
||||||
|
this._applications = [];
|
||||||
|
this._items = [];
|
||||||
|
|
||||||
|
this.refresh();
|
||||||
|
}
|
||||||
|
|
||||||
|
var p = ZabbixCache.prototype;
|
||||||
|
|
||||||
|
p.refresh = function () {
|
||||||
|
var self = this;
|
||||||
|
var promises = [
|
||||||
|
this.zabbixAPI.getGroups(),
|
||||||
|
this.zabbixAPI.getHosts(),
|
||||||
|
this.zabbixAPI.getApplications(),
|
||||||
|
this.zabbixAPI.getItems()
|
||||||
|
];
|
||||||
|
|
||||||
|
$q.all(promises).then(function (results) {
|
||||||
|
if (results.length) {
|
||||||
|
self._groups = results[0];
|
||||||
|
|
||||||
|
self._hosts = _.forEach(results[1], function(host) {
|
||||||
|
host.groups = _.map(host.groups, 'groupid');
|
||||||
|
return host;
|
||||||
|
});
|
||||||
|
|
||||||
|
self._applications = groupApplications(results[2]);
|
||||||
|
|
||||||
|
self._items = _.forEach(results[3], function(item) {
|
||||||
|
item.applications = _.map(item.applications, 'applicationid');
|
||||||
|
return item;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
p.getGroups = function() {
|
||||||
|
return this._groups;
|
||||||
|
};
|
||||||
|
|
||||||
|
p.getHosts = function() {
|
||||||
|
return this._hosts;
|
||||||
|
};
|
||||||
|
|
||||||
|
p.getApplications = function() {
|
||||||
|
return this._applications;
|
||||||
|
};
|
||||||
|
|
||||||
|
p.getItems = function() {
|
||||||
|
return this._items;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Group Zabbix applications by name
|
||||||
|
*/
|
||||||
|
function groupApplications(applications) {
|
||||||
|
return _.map(_.groupBy(applications, 'name'), function (value, key) {
|
||||||
|
return {
|
||||||
|
name: key,
|
||||||
|
applicationids: _.map(value, 'applicationid'),
|
||||||
|
hostids: _.uniq(_.map(_.flatten(value, 'hosts'), 'hostid'))
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return ZabbixCache;
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
Reference in New Issue
Block a user