udp_errors.conf 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # you can disable an alarm notification by setting the 'to' line to: silent
  2. # -----------------------------------------------------------------------------
  3. # UDP receive buffer errors
  4. alarm: 1m_ipv4_udp_receive_buffer_errors
  5. on: ipv4.udperrors
  6. class: Errors
  7. type: System
  8. component: Network
  9. os: linux freebsd
  10. hosts: *
  11. lookup: average -1m unaligned absolute of RcvbufErrors
  12. units: errors
  13. every: 10s
  14. warn: $this > (($status >= $WARNING) ? (0) : (10))
  15. info: average number of UDP receive buffer errors over the last minute
  16. delay: up 1m down 60m multiplier 1.2 max 2h
  17. to: silent
  18. # -----------------------------------------------------------------------------
  19. # UDP send buffer errors
  20. alarm: 1m_ipv4_udp_send_buffer_errors
  21. on: ipv4.udperrors
  22. class: Errors
  23. type: System
  24. component: Network
  25. os: linux
  26. hosts: *
  27. lookup: average -1m unaligned absolute of SndbufErrors
  28. units: errors
  29. every: 10s
  30. warn: $this > (($status >= $WARNING) ? (0) : (10))
  31. info: average number of UDP send buffer errors over the last minute
  32. delay: up 1m down 60m multiplier 1.2 max 2h
  33. to: silent