no parameters
The following status counters are available (in processing order):
"disabled": an alert was not processed because it is disabled.
"typefiltered": an alert was not processed because the received event doesn't contain the expected event type in .attrs.type. Used in some domain-specific alerts.
"auxfilterna": an alert was not processed because the alert's type filter didn't find the expected attributes in the received event.
"auxfiltered": an alert was not processed because the alert's type filter didn't match the received event.
"filterna": an alert was not processed because the custom filter didn't find the expected attributes in the received event.
"filtered": an alert was not processed because the custom filter didn't match the received event.
"nokey": an alert was not processed because the key attribute was not found in the received event.
"lowscore": an alert's score is non-zero but still too low for an alert to be raised. (the score is evaluated on a key-by-key basis)
"userSupressed": an alert's score is above the threshold, but the alert will not be raised because it was suppressed for the given key value using the suppression API.
"throttled": an alert's score is above the threshold, but the alert will not be raised because it was raised recently (throttling period is configurable on an alert-by-alert basis)
"blisted": an alert's score is above the threshold, but the alert will not be raised because it was blacklisted recently
"raised": an alert's score is above the threshold and is scheduled for raising.
{
"statusCode":200,
"statusDescription":"info for ba86ac2a-7f13-44b3-ba77-4dc29e6f6305 ",
"data":{
"startedMs":1728300293640,
"startedIso":"2024-10-07T11:24:53.640Z",
"info":"info for tenant ba86ac2a-7f13-44b3-ba77-4dc29e6f6305",
"tenant":{
"startedMs":1728300293640, // timestamp when alert processing started
"startedIso":"2024-10-07T11:24:53.640Z", // the same in ISO format
"resetMs":1728300295345, // timestamp when counters were reset
"resetIso":"2024-10-07T11:24:55.345Z", // the same in ISO format
"events":5, // number of events received
"eventsByType":{ // break-down by event type (attrs.type)
"call-end":4,
"nevermatch":1
},
"alertsById":{ // alert break-down by alert-ID
"123456":{ // alert-ID
"raised":2, // "raised" count for alert "123456"
"sent":2,
"throttled":2,
"filtered":1
},
"OKREG":{
"typefiltered":5
},
"825feda9":{
"filterna":2,
"filtered":2,
"raised":1,
"sent":1
},
...
},
"alertsByStatus":{ // alert break-down by status
"filtered":{ // status "filtered"
"123456":1, // ... encountered once for alert 123456
"CTHR":5,
"BTCR":5,
"BICR":5,
"SM":3,
"2ba92f67":2,
"d7cabb01":3,
"825feda9":2,
"3a7a703a":2,
"9304ba1f":2
},
...
},
"totals": { // processing result totals
"exceptions":0, // number of events completed by an exception
"filtered":30, // total (status x alerts) count
"typefiltered":38,
"filterna":6,
"raised":10,
"sent":10,
"throttled":14
}
},
"meminfo":{ // REDIS-specific memory stats
"peakAllocated":48688992,
"totalAllocated":46126784,
"keysCount":1527,
...
}
}
}