zfs.conf 1016 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. info: number of times ZFS had to limit the ARC growth in the last 10 minutes
  12. to: silent
  13. # ZFS pool state
  14. template: zfs_pool_state_warn
  15. on: zfspool.state
  16. class: Errors
  17. type: System
  18. component: File system
  19. calc: $degraded
  20. units: boolean
  21. every: 10s
  22. warn: $this > 0
  23. delay: down 1m multiplier 1.5 max 1h
  24. info: ZFS pool ${label:pool} state is degraded
  25. to: sysadmin
  26. template: zfs_pool_state_crit
  27. on: zfspool.state
  28. class: Errors
  29. type: System
  30. component: File system
  31. calc: $faulted + $unavail
  32. units: boolean
  33. every: 10s
  34. crit: $this > 0
  35. delay: down 1m multiplier 1.5 max 1h
  36. info: ZFS pool ${label:pool} state is faulted or unavail
  37. to: sysadmin