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
This evening, the alert node suddenly started inhibiting alerts even there is no .inhibit() property defined. Events from influxdb continued to be received by kapacitor.
Tick Script Template:
var measurement string
var where_filter = lambda: TRUE
var groups = [*]
var window = 10s
var deadman_interval = 900s
var topic string
var info = lambda: TRUE
var warn = lambda: FALSE
var crit = lambda: FALSE
var data_raw = stream
|from()
.measurement(measurement)
.where(where_filter)
.groupBy(groups)
data_raw
|alert()
.category('threshold')
.info(info)
.warn(warn)
.crit(crit)
.topic(topic)
[...]
Variables:
Vars:
Name Type Value
crit lambda "used_percent" > 90.0
measurement string disk
topic string telegraf_disk
warn lambda "used_percent" > 75.0
This evening, the alert node suddenly started inhibiting alerts even there is no .inhibit() property defined. Events from influxdb continued to be received by kapacitor.
Tick Script Template:
Variables:
Graph:
Version:
kapacitor-1.6.5-1.x86_64 on Centos 7, Influxdb is 1.8.10
Data is gathered from
telegraf
and sent to influxdb; kapacitor subscribed to the DB. Any pointers?The text was updated successfully, but these errors were encountered: