blob: 3750176c5f5864d055d25a0b34783090d0a57ce1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# make sure redis is running
template: redis_last_collected_secs
on: redis.operations
calc: $now - $last_collected_t
every: 10s
warn: $this > ( 5 * $update_every)
crit: $this > (10 * $update_every)
units: seconds ago
info: number of seconds since the last successful data collection
|