Re: [prometheus-users] Sent resolved or inactive status (alertmanager)

2020-07-14 Thread Dmitry
Thank you. It helped me. On Monday, July 13, 2020 at 8:11:43 PM UTC+3, Brian Candler wrote: > > It goes under each receiver separately, e.g. > > email_configs: > - to: em...@gmail.com > from: em...@gmail.com > send_resolved: true > -- You received this message because you are

Re: [prometheus-users] Sent resolved or inactive status (alertmanager)

2020-07-13 Thread Brian Candler
It goes under each receiver separately, e.g. email_configs: - to: em...@gmail.com from: em...@gmail.com send_resolved: true -- You received this message because you are subscribed to the Google Groups "Prometheus Users" group. To unsubscribe from this group and stop receivin

Re: [prometheus-users] Sent resolved or inactive status (alertmanager)

2020-07-13 Thread Dmitry
No, I did not set send_resolved: true. I am trying to add this line to my configuration file, but there is no result. But if I look at the alertmanager status page, I will see the line send_resolved: false in my configuration. global: slack_api_url: 'https://hooks.' route:

Re: [prometheus-users] Sent resolved or inactive status (alertmanager)

2020-07-13 Thread Christian Hoffmann
Hi, On 7/13/20 1:27 PM, Dmitry wrote: > Hello! > I have standard rule for prometheus alertmanager: >   rules: >   - alert: Instance_down > expr: up == 0 > for: 1m > # Labels - additional labels to be attached to the alert > labels: >   severity: 'critical' > annotations: >

[prometheus-users] Sent resolved or inactive status (alertmanager)

2020-07-13 Thread Dmitry
Hello! I have standard rule for prometheus alertmanager: rules: - alert: Instance_down expr: up == 0 for: 1m # Labels - additional labels to be attached to the alert labels: severity: 'critical' annotations: title: 'Instance {{ $labels.instance }} down' des