| 1 | # you can disable an alarm notification by setting the 'to' line to: silent |
| 2 | |
| 3 | alarm: active_processes |
| 4 | on: system.active_processes |
| 5 | class: Workload |
| 6 | type: System |
| 7 | component: Processes |
| 8 | calc: $active * 100 / $pidmax |
| 9 | units: % |
| 10 | every: 5s |
| 11 | warn: $this > (($status >= $WARNING) ? (85) : (90)) |
| 12 | crit: $this > (($status == $CRITICAL) ? (90) : (95)) |
| 13 | delay: down 5m multiplier 1.5 max 1h |
| 14 | summary: System PIDs utilization |
| 15 | info: System process IDs (PID) space utilization |
| 16 | to: sysadmin |