zfs.conf 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. alarm: zfs_memory_throttle
  2. on: zfs.memory_ops
  3. class: Utilization
  4. type: System
  5. component: File system
  6. lookup: sum -10m unaligned absolute of throttled
  7. units: events
  8. every: 1m
  9. warn: $this > 0
  10. delay: down 1h multiplier 1.5 max 2h
  11. summary: ZFS ARC growth throttling
  12. info: number of times ZFS had to limit the ARC growth in the last 10 minutes
  13. to: silent
  14. # ZFS pool state
  15. template: zfs_pool_state_warn
  16. on: zfspool.state
  17. class: Errors
  18. type: System
  19. component: File system
  20. calc: $degraded
  21. units: boolean
  22. every: 10s
  23. warn: $this > 0
  24. delay: down 1m multiplier 1.5 max 1h
  25. summary: ZFS pool ${label:pool} state
  26. info: ZFS pool ${label:pool} state is degraded
  27. to: sysadmin
  28. template: zfs_pool_state_crit
  29. on: zfspool.state
  30. class: Errors
  31. type: System
  32. component: File system
  33. calc: $faulted + $unavail
  34. units: boolean
  35. every: 10s
  36. crit: $this > 0
  37. delay: down 1m multiplier 1.5 max 1h
  38. summary: Critical ZFS pool ${label:pool} state
  39. info: ZFS pool ${label:pool} state is faulted or unavail
  40. to: sysadmin