ipc.conf 863 B

1234567891011121314151617181920212223242526272829303132
  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. info: IPC semaphore utilization
  15. to: sysadmin
  16. alarm: semaphore_arrays_used
  17. on: system.ipc_semaphore_arrays
  18. class: Utilization
  19. type: System
  20. component: IPC
  21. os: linux
  22. hosts: *
  23. calc: $arrays * 100 / $ipc_semaphores_arrays_max
  24. units: %
  25. every: 10s
  26. warn: $this > (($status >= $WARNING) ? (70) : (80))
  27. delay: down 5m multiplier 1.5 max 1h
  28. info: IPC semaphore arrays utilization
  29. to: sysadmin