]> arthur.barton.de Git - netdata.git/blob - conf.d/health.d/ipc.conf
dns_query_time plugin: replace "." with "_" in dimensions
[netdata.git] / conf.d / health.d / ipc.conf
1
2    alarm: semaphores_used
3       on: system.ipc_semaphores
4     calc: $semaphores * 100 / $ipc.semaphores.max
5    units: %
6    every: 10s
7     warn: $this > (($status >= $WARNING)  ? (70) : (80))
8     crit: $this > (($status == $CRITICAL) ? (70) : (90))
9    delay: down 5m multiplier 1.5 max 1h
10     info: the percentage of IPC semaphores used
11       to: sysadmin
12
13    alarm: semaphore_arrays_used
14       on: system.ipc_semaphore_arrays
15     calc: $arrays * 100 / $ipc.semaphores.arrays.max
16    units: %
17    every: 10s
18     warn: $this > (($status >= $WARNING)  ? (70) : (80))
19     crit: $this > (($status == $CRITICAL) ? (70) : (90))
20    delay: down 5m multiplier 1.5 max 1h
21     info: the percentage of IPC semaphore arrays used
22       to: sysadmin