...
Code Block |
---|
[Service]#ExecStart=/usr/sbin/collectd ExecStart=/opt/collectd/sbin/collectd -C /opt/collectd/etc/collectd.conf #EnvironmentFile=-/etc/sysconfig/collectd #EnvironmentFile=-/etc/default/collectd ProtectSystem=full ProtectHome=true |
Modify the /opt/collectd/etc/collectd.conf file
Code Block |
---|
<LoadPlugin cpu>
Interval 1
</LoadPlugin>
<LoadPlugin virt>
Interval 1
</LoadPlugin>
LoadPlugin csv
<Plugin cpu>
ReportByCpu true
ReportByState false
ValuesPercentage true
</Plugin>
<Plugin csv>
DataDir "/tmp/collectd/csv"
# StoreRates false
</Plugin><Plugin virt>
Connection "qemu:///system"
# RefreshInterval 60
# Domain "name"
# BlockDevice "name:device"
# BlockDeviceFormat target
# BlockDeviceFormatBasename false
# InterfaceDevice "name:device"
# IgnoreSelected false
HostnameFormat uuid
# InterfaceFormat name
# PluginInstanceFormat name
Instances 1
ExtraStats "disk pcpu"
</Plugin>
|