ipc.conf 931 B

12345678910111213141516171819202122232425262728293031323334
  1. # you can disable an alarm notification by setting the 'to' line to: silent
  2. alarm: semaphores_used
  3. on: system.ipc_semaphores
  4. class: Utilization
  5. type: System
  6. component: IPC
  7. os: linux
  8. hosts: *
  9. calc: $semaphores * 100 / $ipc_semaphores_max
  10. units: %
  11. every: 10s
  12. warn: $this > (($status >= $WARNING) ? (70) : (80))
  13. delay: down 5m multiplier 1.5 max 1h
  14. summary: IPC semaphores used
  15. info: IPC semaphore utilization
  16. to: sysadmin
  17. alarm: semaphore_arrays_used
  18. on: system.ipc_semaphore_arrays
  19. class: Utilization
  20. type: System
  21. component: IPC
  22. os: linux
  23. hosts: *
  24. calc: $arrays * 100 / $ipc_semaphores_arrays_max
  25. units: %
  26. every: 10s
  27. warn: $this > (($status >= $WARNING) ? (70) : (80))
  28. delay: down 5m multiplier 1.5 max 1h
  29. summary: IPC semaphore arrays used
  30. info: IPC semaphore arrays utilization
  31. to: sysadmin