Advertisement
Guest User

Untitled

a guest
Aug 12th, 2017
454
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. commit 0276fb2cb0506f5ff936d853fb7f58729415e33d
  2. Author: Andres J. Diaz <ajdiaz@connectical.com>
  3. Date: Sun Jun 13 12:36:46 2010 +0200
  4.  
  5. Complete the collectd.conf man page.
  6.  
  7. Add explanations for some parameters in thresholds configuration, link
  8. Hysteresis, Hits or Interesting flags.
  9.  
  10. diff --git a/src/collectd.conf.pod b/src/collectd.conf.pod
  11. index 0fcd674..98b9298 100644
  12. --- a/src/collectd.conf.pod
  13. +++ b/src/collectd.conf.pod
  14. @@ -4504,6 +4504,13 @@ information.
  15. WarningMin 100000000
  16. </Type>
  17. </Plugin>
  18. +
  19. + <Type "load">
  20. + DataSource "midterm"
  21. + FailureMax 4
  22. + Hits 3
  23. + Hysteresis 3
  24. + </Type>
  25. </Host>
  26. </Threshold>
  27.  
  28. @@ -4576,6 +4583,27 @@ percentage value, relative to the other data sources. This is helpful for
  29. example for the "df" type, where you may want to issue a warning when less than
  30. 5E<nbsp>% of the total space is available. Defaults to B<false>.
  31.  
  32. +=item B<Hits> I<Value>
  33. +
  34. +Sets the number of occurrences which the threshold must be arised before to
  35. +dispatch any notification or, in other words, the number of B<Interval>s
  36. +than the threshold must be match before dispatch any notification.
  37. +
  38. +=item B<Hysteresis> I<Value>
  39. +
  40. +Sets the hysteresis value for threshold. The hysteresis is a method to
  41. +prevent flapping between states, until a new received value for
  42. +a previously matched threshold down below the threshold condition
  43. +(B<WarningMax>, B<FailureMin> or everthing else) minus the hysteresis value,
  44. +the failure (respectively warning) state will be keep.
  45. +
  46. +=item B<Interesting> B<true>|B<false>
  47. +
  48. +If set to B<true> (the default), the threshold must be treated as
  49. +interesting and, when a number of B<Timeout> values will lost, then
  50. +a missing notification will be dispatched. On the other hand, if set to
  51. +B<false>, the missing notification will never dispatched for this threshold.
  52. +
  53. =back
  54.  
  55. =head1 FILTER CONFIGURATION
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement