diff options
Diffstat (limited to 'docs/release/userguide/collectd-ves-host.conf')
-rw-r--r-- | docs/release/userguide/collectd-ves-host.conf | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/docs/release/userguide/collectd-ves-host.conf b/docs/release/userguide/collectd-ves-host.conf new file mode 100644 index 00000000..76706b5c --- /dev/null +++ b/docs/release/userguide/collectd-ves-host.conf @@ -0,0 +1,26 @@ +LoadPlugin logfile +<Plugin logfile> + LogLevel info + File "/opt/collectd/var/log/collectd.log" + Timestamp true + PrintSeverity false +</Plugin> + +LoadPlugin cpu + +LoadPlugin virt +<Plugin virt> + Connection "qemu:///system" + RefreshInterval 60 + HostnameFormat uuid + PluginInstanceFormat name + ExtraStats "cpu_util" +</Plugin> + +LoadPlugin write_kafka +<Plugin write_kafka> + Property "metadata.broker.list" "localhost:9092" + <Topic "collectd"> + Format JSON + </Topic> +</Plugin> |