Skip to content

Commit

Permalink
Merge branch 'release-1.0.1' into grafana-1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderzobnin committed May 14, 2015
2 parents d9614fc + bdae2d6 commit 145021d
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 21 deletions.
28 changes: 15 additions & 13 deletions zabbix/datasource.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ function (angular, _, kbn) {
// Need for find target alias
var targets = options.targets;

// TODO: remove undefined targets from request
// Check that all targets defined
var targetsDefined = options.targets.every(function (target, index, array) {
return target.item;
// Remove undefined and hidden targets
var displayedTargets = _.filter(targets, function (target) {
return (!target.hide && target.item);
});
if (targetsDefined) {

if (displayedTargets.length) {
// Extract zabbix api item objects from targets
var target_items = _.map(options.targets, 'item');
var target_items = _.map(displayedTargets, 'item');
} else {
// No valid targets, return the empty dataset
var d = $q.defer();
Expand Down Expand Up @@ -75,13 +75,15 @@ function (angular, _, kbn) {
// Index returned datapoints by item/metric id
var indexed_result = _.groupBy(response, 'itemid');

// TODO: realize correct timeseries reduce
/*
// Reduce timeseries to the same size for stacking and tooltip work properly
var min_length = _.min(_.map(indexed_result, function (history) {
return history.length;
}));
_.each(indexed_result, function (item) {
item.splice(0, item.length - min_length);
});
});*/

// Sort result as the same as targets for display
// stacked timeseries in proper order
Expand Down Expand Up @@ -120,7 +122,7 @@ function (angular, _, kbn) {


// Request data from Zabbix API
ZabbixAPIDatasource.prototype.doZabbixAPIRequest = function(request_data) {
ZabbixAPIDatasource.prototype.performZabbixAPIRequest = function(request_data) {
var options = {
method: 'POST',
headers: {
Expand Down Expand Up @@ -192,7 +194,7 @@ function (angular, _, kbn) {
data.params.time_till = end;
}

apiRequests.push(self.doZabbixAPIRequest(data));
apiRequests.push(self.performZabbixAPIRequest(data));
});

return this.handleMultipleRequest(apiRequests);
Expand Down Expand Up @@ -265,7 +267,7 @@ function (angular, _, kbn) {
id: 1
};

return this.doZabbixAPIRequest(data);
return this.performZabbixAPIRequest(data);
};


Expand All @@ -285,7 +287,7 @@ function (angular, _, kbn) {
data.params.groupids = groupid;
}

return this.doZabbixAPIRequest(data);
return this.performZabbixAPIRequest(data);
};


Expand All @@ -303,7 +305,7 @@ function (angular, _, kbn) {
id: 1
};

return this.doZabbixAPIRequest(data);
return this.performZabbixAPIRequest(data);
};


Expand All @@ -329,7 +331,7 @@ function (angular, _, kbn) {
data.params.applicationids = applicationid;
}

return this.doZabbixAPIRequest(data);
return this.performZabbixAPIRequest(data);
};


Expand Down
17 changes: 9 additions & 8 deletions zabbix/queryCtrl.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,17 +65,18 @@ function (angular, _) {

// Call when host selected
$scope.selectHost = function() {
if ($scope.target.host) {
// Update item list
if ($scope.target.application) {
$scope.updateItemList($scope.target.host.hostid, $scope.target.application.applicationid);
} else {
$scope.updateItemList($scope.target.host.hostid, null);
}

// Update item list
if ($scope.target.application) {
$scope.updateItemList($scope.target.host.hostid, $scope.target.application.applicationid);
} else {
$scope.updateItemList($scope.target.host.hostid, null);
// Update application list
$scope.updateAppList($scope.target.host.hostid);
}

// Update application list
$scope.updateAppList($scope.target.host.hostid);

$scope.target.errors = validateTarget($scope.target);
if (!_.isEqual($scope.oldTarget, $scope.target) && _.isEmpty($scope.target.errors)) {
$scope.oldTarget = angular.copy($scope.target);
Expand Down

0 comments on commit 145021d

Please sign in to comment.