Guest User

Untitled

a guest
Mar 11th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # For each instance where collectd is running, we define
  2. # hostname proper to that instance. When metrics from
  3. # multiple instances are aggregated, hostname will tell
  4. # us were they came from.
  5. Interval 10
  6.  
  7. # Plugins we are going to use with their configurations,
  8. # if needed
  9. LoadPlugin cpu
  10.  
  11. LoadPlugin df
  12. <Plugin df>
  13.         Device "/dev/xvda1"
  14.         MountPoint "/"
  15.         FSType "ext4"
  16. </Plugin>
  17.  
  18. LoadPlugin interface
  19. <Plugin interface>
  20.         Interface "eth0"
  21.         IgnoreSelected false
  22. </Plugin>
  23.  
  24. LoadPlugin network
  25. <Plugin network>
  26.         Server "127.0.0.1" "25826"
  27. </Plugin>
  28.  
  29. LoadPlugin memory
  30.  
  31. LoadPlugin "logfile"
  32. <Plugin "logfile">
  33.         LogLevel "info"
  34.         File "/var/log/collectd.log"
  35.         Timestamp true
  36.         PrintSeverity true
  37. </Plugin>
  38.  
  39. <Include "/etc/collectd/collectd.conf.d">
  40.         Filter ".conf"
  41. </Include>
Add Comment
Please, Sign In to add comment