I have a check that integrate with pagerduty and will page me once there are more than three Criticals events, with using the sensu-plugin/handler-pagerduty.rb (sensu-plugins-pagerduty/handler-pagerduty.rb at master · sensu-plugins/sensu-plugins-pagerduty · GitHub) The event mapped the into sensugo with sensu-plugin/sensu-handler.rb at master · sensu-plugins/sensu-plugin · GitHub
Now the issue is I got paged for even a single error event(there are mainly two issues in this case. First, the occurrences filter here is not working, and second issue is, it couldn’t override the non-critical event into a correct event severity. i.e. when the event send to pagerduty, all kinds of events treated at a Critical level. For the second issue I find this plugin file could solve the issue sensu-plugins-pagerduty/mutator-pagerduty-priority-override.rb at master · sensu-plugins/sensu-plugins-pagerduty · GitHub, but occurrences filter not working to page us only if above 3 events is still a problem at this moment)
Could you please have a look at the issue, this is weird because the occurrences filter is working for email and slack alert handlers, only when sending pager duty, it is not working. Is there a way can solve this issue?
The event json file:
{
"check": {
"command": "echo testing..... && /4xx-error-rates.py --endpoint \"%\" --status_code \"401\"",
"handlers": [
"pd-test"
],
"high_flap_threshold": 0,
"interval": 300,
"low_flap_threshold": 0,
"publish": true,
"runtime_assets": null,
"subscriptions": [
"runner",
"runner-stg"
],
"proxy_entity_name": "api-checker",
"check_hooks": null,
"stdin": false,
"subdue": null,
"ttl": 0,
"timeout": 0,
"round_robin": true,
"duration": 0.10803472,
"executed": 1618516354,
"history": [
{
"status": 127,
"executed": 1618511247
},
{
"status": 127,
"executed": 1618511547
},
{
"status": 0,
"executed": 1618511547
},
{
"status": 127,
"executed": 1618511848
},
{
"status": 127,
"executed": 1618512148
},
{
"status": 127,
"executed": 1618512449
},
{
"status": 127,
"executed": 1618512749
},
{
"status": 127,
"executed": 1618513049
},
{
"status": 127,
"executed": 1618513350
},
{
"status": 127,
"executed": 1618513650
},
{
"status": 127,
"executed": 1618513951
},
{
"status": 127,
"executed": 1618514251
},
{
"status": 127,
"executed": 1618514552
},
{
"status": 127,
"executed": 1618514852
},
{
"status": 127,
"executed": 1618515152
},
{
"status": 127,
"executed": 1618515453
},
{
"status": 127,
"executed": 1618515753
},
{
"status": 127,
"executed": 1618516054
},
{
"status": 127,
"executed": 1618516056
},
{
"status": 0,
"executed": 1618516056
},
{
"status": 127,
"executed": 1618516354
}
],
"issued": 1618516354,
"output": "testing.....\nsh: /4xx-error-rates.py: No such file or directory\n",
"state": "failing",
"status": 127,
"total_state_change": 20,
"last_ok": 1618516056,
"occurrences": 1,
"occurrences_watermark": 1,
"output_metric_format": "",
"output_metric_handlers": null,
"env_vars": null,
"metadata": {
"name": "apiv3_errors_401",
"namespace": "stg",
"labels": {
"sensu.io/managed_by": "sensuctl",
"notification": "APIV3 403 Error Rate"
}
},
"secrets": null,
"is_silenced": false,
"scheduler": "etcd"
},
"entity": {
"entity_class": "proxy",
"system": {
"network": {
"interfaces": null
},
"libc_type": "",
"vm_system": "",
"vm_role": "",
"cloud_provider": "",
"processes": null
},
"subscriptions": [
"entity:api-checker"
],
"last_seen": 0,
"deregister": false,
"deregistration": {},
"metadata": {
"name": "api-checker",
"namespace": "stg"
},
"sensu_agent_version": ""
},
"id": "0cc06dd9-959d-4a7c-be2b-2df4986aa757",
"metadata": {
"namespace": "stg"
},
"sequence": 1,
"timestamp": 1618516354
}
The handler and the filter configuration:
type: Handler
api_version: core/v2
metadata:
name: 'pd-test'
namespace: stg
spec:
type: set
filters:
- is_incident
- not_silenced
- emb-occurrences_3_filter
handlers:
- pagerduty_api_sre
---
type: Handler
api_version: core/v2
metadata:
name: 'pagerduty_api_sre'
namespace: stg
spec:
command: "/opt/sensu-plugins-ruby/embedded/bin/handler-pagerduty.rb -j pagerduty_api_sre --map-go-event-into-ruby"
type: pipe
filters:
- is_incident
- not_silenced
Filter configuration
---
type: EventFilter
api_version: core/v2
metadata:
name: "emb-occurrences_3_filter"
namespace: stg
spec:
action: allow
expressions:
- event.check.occurrences >= 3