diff options
author | Aaron Smith <aasmith@redhat.com> | 2018-01-11 17:22:19 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-01-11 17:22:19 +0000 |
commit | 602e886ab04a8c81aa8c3ff2fc4d4914a0acef71 (patch) | |
tree | 51ad0ecd1279b92f4247f485c821bfca895f6052 /docs/release/userguide/collectd-ves-hypervisor.conf | |
parent | 143af2875ab5e9d01e1ba396d294d4dc92f4560e (diff) | |
parent | c79b21c7762a4b586822a1af3819c06b984a5c72 (diff) |
Merge "docs: update ves documentation and add steps to run on baremetal nodes"
Diffstat (limited to 'docs/release/userguide/collectd-ves-hypervisor.conf')
-rw-r--r-- | docs/release/userguide/collectd-ves-hypervisor.conf | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/docs/release/userguide/collectd-ves-hypervisor.conf b/docs/release/userguide/collectd-ves-hypervisor.conf new file mode 100644 index 00000000..301b0a4d --- /dev/null +++ b/docs/release/userguide/collectd-ves-hypervisor.conf @@ -0,0 +1,26 @@ +LoadPlugin logfile +LoadPlugin cpu +LoadPlugin virt +LoadPlugin write_kafka + +<Plugin logfile> + LogLevel info + File "/opt/collectd/var/log/collectd.log" + Timestamp true + PrintSeverity false +</Plugin> + +<Plugin virt> + Connection "qemu:///system" + RefreshInterval 60 + HostnameFormat uuid + PluginInstanceFormat name + ExtraStats "cpu_util" +</Plugin> + +<Plugin write_kafka> + Property "metadata.broker.list" "localhost:9092" + <Topic "collectd"> + Format JSON + </Topic> +</Plugin> |