I am trying to change the resolve timeout in alertmanager but the
resolved status notification always seems to come at the default 5m in
my testing with a local webhook. My test config is below(tried both json
and yaml format), is there a conflict with one of the other timers?
{
"global": {
"resolve_timeout": "1m",
"smtp_smarthost": "localhost:25",
"smtp_from": "alertm...@example.local",
"smtp_require_tls": false
},
"templates": [
"/etc/alertmanager/template/*.tmpl"
],
"route": {
"receiver": "default-receiver",
"group_wait": "10s",
"group_interval": "5m",
"repeat_interval": "2m",
"routes": [
{
"receiver": "database-pager",
"group_wait": "10s",
"group_by": [
"datacenter",
"alertname",
"job"
],
"match_re": {
"role": "core|aggregate"
}
}
]
},
"receivers": [
{
"name": "database-pager",
"email_configs": [
{
"to": "root@localhost"
}
]
},
{
"name": "default-receiver",
"webhook_configs": [
{
"url": "
http://127.0.0.1:8000/webhook"
}
]
}
]
}