mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Merge pull request #447 from rashidkpc/singleAlerts
Duplicate alerts should not stack up
This commit is contained in:
commit
cd919a3e46
@ -11,11 +11,21 @@ angular.module('kibana.services', [])
|
|||||||
this.list = [];
|
this.list = [];
|
||||||
|
|
||||||
this.set = function(title,text,severity,timeout) {
|
this.set = function(title,text,severity,timeout) {
|
||||||
var _a = {
|
var
|
||||||
title: title || '',
|
_a = {
|
||||||
text: text || '',
|
title: title || '',
|
||||||
severity: severity || 'info',
|
text: text || '',
|
||||||
};
|
severity: severity || 'info',
|
||||||
|
},
|
||||||
|
_ca = angular.toJson(_a),
|
||||||
|
_clist = _.map(self.list,function(alert){return angular.toJson(alert);});
|
||||||
|
|
||||||
|
// If we already have this alert, remove it and add a new one
|
||||||
|
// Why do this instead of skipping the add because it resets the timer
|
||||||
|
if(_.contains(_clist,_ca)) {
|
||||||
|
_.remove(self.list,_.indexOf(_clist,_ca));
|
||||||
|
}
|
||||||
|
|
||||||
self.list.push(_a);
|
self.list.push(_a);
|
||||||
if (timeout > 0) {
|
if (timeout > 0) {
|
||||||
$timeout(function() {
|
$timeout(function() {
|
||||||
|
Loading…
Reference in New Issue
Block a user