Skip to content

Instantly share code, notes, and snippets.

@guilledk
Created January 17, 2022 00:00
Show Gist options
  • Save guilledk/284a12c1b22504aaaf7f2a718bc64154 to your computer and use it in GitHub Desktop.
Save guilledk/284a12c1b22504aaaf7f2a718bc64154 to your computer and use it in GitHub Desktop.
Minimalist collectd.conf
FQDNLookup true
Interval 10
LoadPlugin syslog
<Plugin syslog>
LogLevel error
</Plugin>
#LoadPlugin csv
LoadPlugin rrdtool
LoadPlugin df
LoadPlugin disk
LoadPlugin interface
LoadPlugin network
LoadPlugin cpu
LoadPlugin load
LoadPlugin memory
LoadPlugin swap
LoadPlugin uptime
# Configure the csv plugin
#<Plugin csv>
# DataDir "/var/lib/collectd/csv"
# StoreRates true
#</Plugin>
# Configure the rrdtool plugin
<Plugin rrdtool>
DataDir "/var/lib/collectd/rrd"
</Plugin>
<Plugin "cpu">
ValuesPercentage true
</Plugin>
<Plugin interface>
Interface "enp1s0"
IgnoreSelected false
</Plugin>
<Plugin disk>
Disk "sda"
IgnoreSelected false
</Plugin>
<Plugin "df">
IgnoreSelected false
MountPoint "/"
</Plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment