You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
765 B

  1. # Config file for collectd. More info: https://collectd.org/
  2. # Note: Luci statistics will generate a new config and overwrite this file.
  3. #Hostname "localhost"
  4. #FQDNLookup true
  5. BaseDir "/var/run/collectd"
  6. Include "/etc/collectd/conf.d"
  7. PIDFile "/var/run/collectd.pid"
  8. PluginDir "/usr/lib/collectd"
  9. TypesDB "/usr/share/collectd/types.db"
  10. Interval 30
  11. ReadThreads 2
  12. LoadPlugin interface
  13. LoadPlugin load
  14. #LoadPlugin ping
  15. LoadPlugin rrdtool
  16. <Plugin rrdtool>
  17. DataDir "/tmp/rrd"
  18. RRARows 100
  19. RRASingle true
  20. RRATimespan 3600
  21. RRATimespan 86400
  22. RRATimespan 604800
  23. RRATimespan 2678400
  24. RRATimespan 31622400
  25. </Plugin>
  26. <Plugin interface>
  27. IgnoreSelected false
  28. Interface "br-lan"
  29. </Plugin>
  30. #<Plugin ping>
  31. # Host "host.foo.bar"
  32. # Interval 30
  33. # TTL 127
  34. #</Plugin>