Warning when no heartbeat is received

I have an application log written by a windows service. Is it possible to set an inactivity warning; eg "If it was not written in the last 15 minutes, activate the alert"?

+3


source to share


2 answers


I'm afraid there is no such option. What I would recommend doing is dismiss your own Keep Alive metric with a value of 1 every tick and so on, and define a custom alert (see here ) if the value falls below some threshold.



+1


source


You may be interested in Application Insights heart rate metrics.

Q & A: https://github.com/microsoft/ApplicationInsights-Home/blob/master/heartbeat/heartbeat-q-and-a.md



Spec: https://github.com/microsoft/ApplicationInsights-Home/blob/master/heartbeat/heartbeat-specification.md

0


source







All Articles