thresholds.conf.j2 943 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # This file is managed by ansible, don't make changes here - they will be overwritten.
  2. # Threshold configuration for collectd(1).
  3. #
  4. # See the section "THRESHOLD CONFIGURATION" in collectd.conf(5) for details.
  5. #LoadPlugin "threshold"
  6. #<Plugin "threshold">
  7. # <Type "counter">
  8. # WarningMin 0.00
  9. # WarningMax 1000.00
  10. # FailureMin 0
  11. # FailureMax 1200.00
  12. # Invert false
  13. # Persist false
  14. # Instance "some_instance"
  15. # </Type>
  16. #
  17. # <Type "load">
  18. # DataSource "midterm"
  19. # WarningMax 1
  20. # Hysteresis 0.3
  21. # </Type>
  22. #
  23. # <Type "cpu">
  24. # Instance "user"
  25. # WarningMax 85
  26. # Hits 6
  27. # </Type>
  28. #
  29. # <Plugin "interface">
  30. # Instance "eth0"
  31. # <Type "if_octets">
  32. # DataSource "rx"
  33. # FailureMax 10000000
  34. # </Type>
  35. # </Plugin>
  36. #
  37. # <Host "hostname">
  38. # <Type "cpu">
  39. # Instance "idle"
  40. # FailureMin 10
  41. # </Type>
  42. #
  43. # <Plugin "memory">
  44. # <Type "memory">
  45. # Instance "cached"
  46. # WarningMin 100000000
  47. # </Type>
  48. # </Plugin>
  49. # </Host>
  50. #</Plugin>