You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var data = batch
|query("I SELECT A MAX VALUE HERE")
.period(10m)
.cron('0 * * * *')
data
|stats(60m)
.align()
|derivative('emitted')
.unit(60m)
.nonNegative()
|alert()
.crit(lambda: "emitted" == 0)
.noRecoveries()
(... omit ...)
I checked the log and ensured the query returned me records. why is deadman still trigged? (according to https://docs.influxdata.com/kapacitor/v1.6/nodes/stream_node/#deadman. I think my pipeline equals to deadman so I called it) if I do something stupid, how could I improve it?
The text was updated successfully, but these errors were encountered:
Hi there.
I have a TICKscripts looks like
I checked the log and ensured the query returned me records. why is deadman still trigged? (according to https://docs.influxdata.com/kapacitor/v1.6/nodes/stream_node/#deadman. I think my pipeline equals to deadman so I called it) if I do something stupid, how could I improve it?
The text was updated successfully, but these errors were encountered: