--
You received this message because you are subscribed to the Google Groups "Prometheus Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-devel...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-developers+unsub...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-developers+unsubscri...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
No, it's hardcoded currently:
On Fri, Aug 5, 2016 at 10:45 AM, Yitao Jiang <jiang...@gmail.com> wrote:
Cool. so fthe 15mins, is it configurable ?
On Friday, August 5, 2016 at 4:39:37 PM UTC+8, Fabian Reinartz wrote:
Yes, Prometheus will notify that the alert is now resolved. We send these resolved alerts for 15 minutes after they disappeared.The Alertmanager in return, will also send resolved notifications. This will have to configured for each respective receiver.
On Fri, Aug 5, 2016 at 10:35 AM Yitao Jiang <jiang...@gmail.com> wrote:
Hi, there--currently if the alert rules triggered, the AM will be notified. That's fine.But if the alerts recovered, such as the nodes alive after a certain period time,will it send the alerts to the AM and AM send the notifications to corresponding receivers ?IMO, this feature is useful in operation, sometimes what you get alerts actually will auto recover and no impacts on the system, besidesi need to know whether the alerts handled.
You received this message because you are subscribed to the Google Groups "Prometheus Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-devel...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Prometheus Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-devel...@googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "Prometheus Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-devel...@googlegroups.com.
To be clear. There's not much point in making it configurable. If Alertmanager works properly, it will take effect on the first try, so within the first few seconds of these 15 minutes. The 15 minutes is just in case your Alertmanager just went down and you want to bring it back up.
On Fri, Aug 5, 2016 at 6:38 PM Julius Volz <juliu...@gmail.com> wrote:
No, it's hardcoded currently:
On Fri, Aug 5, 2016 at 10:45 AM, Yitao Jiang <jiang...@gmail.com> wrote:
Cool. so fthe 15mins, is it configurable ?
On Friday, August 5, 2016 at 4:39:37 PM UTC+8, Fabian Reinartz wrote:
Yes, Prometheus will notify that the alert is now resolved. We send these resolved alerts for 15 minutes after they disappeared.The Alertmanager in return, will also send resolved notifications. This will have to configured for each respective receiver.
On Fri, Aug 5, 2016 at 10:35 AM Yitao Jiang <jiang...@gmail.com> wrote:
Hi, there--currently if the alert rules triggered, the AM will be notified. That's fine.But if the alerts recovered, such as the nodes alive after a certain period time,will it send the alerts to the AM and AM send the notifications to corresponding receivers ?IMO, this feature is useful in operation, sometimes what you get alerts actually will auto recover and no impacts on the system, besidesi need to know whether the alerts handled.
You received this message because you are subscribed to the Google Groups "Prometheus Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-developers+unsub...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Prometheus Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-developers+unsub...@googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "Prometheus Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-developers+unsub...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Ok, got it. But what if the Alertmanager is running ? will the promethus send recover notification to the AM? Per the code @julius sent, the alerts recovered within 15 minutes will be removed from the vector which in memory. won't send the recovery notification, am i right ?If so, where the code to handle the recover notification
On Sat, Aug 6, 2016 at 12:54 AM, Fabian Reinartz <fab.re...@gmail.com> wrote:
To be clear. There's not much point in making it configurable. If Alertmanager works properly, it will take effect on the first try, so within the first few seconds of these 15 minutes. The 15 minutes is just in case your Alertmanager just went down and you want to bring it back up.
On Fri, Aug 5, 2016 at 6:38 PM Julius Volz <juliu...@gmail.com> wrote:
No, it's hardcoded currently:
On Fri, Aug 5, 2016 at 10:45 AM, Yitao Jiang <jiang...@gmail.com> wrote:
Cool. so fthe 15mins, is it configurable ?
On Friday, August 5, 2016 at 4:39:37 PM UTC+8, Fabian Reinartz wrote:
Yes, Prometheus will notify that the alert is now resolved. We send these resolved alerts for 15 minutes after they disappeared.The Alertmanager in return, will also send resolved notifications. This will have to configured for each respective receiver.
On Fri, Aug 5, 2016 at 10:35 AM Yitao Jiang <jiang...@gmail.com> wrote:
Hi, there--currently if the alert rules triggered, the AM will be notified. That's fine.But if the alerts recovered, such as the nodes alive after a certain period time,will it send the alerts to the AM and AM send the notifications to corresponding receivers ?IMO, this feature is useful in operation, sometimes what you get alerts actually will auto recover and no impacts on the system, besidesi need to know whether the alerts handled.
You received this message because you are subscribed to the Google Groups "Prometheus Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-developers+unsubscri...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Prometheus Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-developers+unsubscri...@googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "Prometheus Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-developers+unsubscri...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
Regards,
Yitao
yes, the AM will treat the alert as a resolved one and wipe out it, is that right ?
From what i tested, the AM won't send the recover notification to the receiver even the node online within or after 15 minutes.BTW, i'm using node-exporter for alert testing
Thank you Julius, i don't noticed such config, let me have a try.
On Sun, Aug 7, 2016 at 6:53 AM, Julius Volz <juliu...@gmail.com> wrote:
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-developers+unsub...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Prometheus Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-developers+unsub...@googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "Prometheus Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-developers+unsub...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
----
Regards,
Yitao
Regards,
Yitao--
Regards,
Yitao