softnet.conf 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # you can disable an alarm notification by setting the 'to' line to: silent
  2. # check for common /proc/net/softnet_stat errors
  3. alarm: 1min_netdev_backlog_exceeded
  4. on: system.softnet_stat
  5. class: Errors
  6. type: System
  7. component: Network
  8. os: linux
  9. hosts: *
  10. lookup: average -1m unaligned absolute of dropped
  11. units: packets
  12. every: 10s
  13. warn: $this > (($status >= $WARNING) ? (0) : (10))
  14. delay: down 1h multiplier 1.5 max 2h
  15. summary: System netdev dropped packets
  16. info: Average number of dropped packets in the last minute \
  17. due to exceeded net.core.netdev_max_backlog
  18. to: silent
  19. alarm: 1min_netdev_budget_ran_outs
  20. on: system.softnet_stat
  21. class: Errors
  22. type: System
  23. component: Network
  24. os: linux
  25. hosts: *
  26. lookup: average -1m unaligned absolute of squeezed
  27. units: events
  28. every: 10s
  29. warn: $this > (($status >= $WARNING) ? (0) : (10))
  30. delay: down 1h multiplier 1.5 max 2h
  31. summary: System netdev budget run outs
  32. info: Average number of times ksoftirq ran out of sysctl net.core.netdev_budget or \
  33. net.core.netdev_budget_usecs with work remaining over the last minute \
  34. (this can be a cause for dropped packets)
  35. to: silent
  36. alarm: 10min_netisr_backlog_exceeded
  37. on: system.softnet_stat
  38. class: Errors
  39. type: System
  40. component: Network
  41. os: freebsd
  42. hosts: *
  43. lookup: average -1m unaligned absolute of qdrops
  44. units: packets
  45. every: 10s
  46. warn: $this > (($status >= $WARNING) ? (0) : (10))
  47. delay: down 1h multiplier 1.5 max 2h
  48. summary: System netisr drops
  49. info: Average number of drops in the last minute \
  50. due to exceeded sysctl net.route.netisr_maxqlen \
  51. (this can be a cause for dropped packets)
  52. to: silent