diff options
author | Marco Platania <platania@research.att.com> | 2019-04-16 14:23:25 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-04-16 14:23:25 +0000 |
commit | 2b21e905e3fa4593ec7c2f1dd16ffb28a97eb56d (patch) | |
tree | 75f4127357ce428efcaeeccba37ed545f2772164 /vnfs/DAaaS/collection/charts/collectd/resources/config | |
parent | 15411868bad0ac9ca4831335442f0b4798e43a4b (diff) | |
parent | 68bab907886c7ed68f8ef831e4e9d9ff40988de2 (diff) |
Merge "Separate collectd plugin config from configmap"
Diffstat (limited to 'vnfs/DAaaS/collection/charts/collectd/resources/config')
-rw-r--r-- | vnfs/DAaaS/collection/charts/collectd/resources/config/collectd.conf | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/vnfs/DAaaS/collection/charts/collectd/resources/config/collectd.conf b/vnfs/DAaaS/collection/charts/collectd/resources/config/collectd.conf new file mode 100644 index 00000000..f62adb6a --- /dev/null +++ b/vnfs/DAaaS/collection/charts/collectd/resources/config/collectd.conf @@ -0,0 +1,44 @@ +FQDNLookup false +LoadPlugin cpu +LoadPlugin memory +LoadPlugin cpufreq +LoadPlugin disk +LoadPlugin ethstat +LoadPlugin ipc +LoadPlugin ipmi +LoadPlugin load +LoadPlugin numa +LoadPlugin processes +LoadPlugin df +LoadPlugin turbostat +LoadPlugin uptime +LoadPlugin contextswitch +LoadPlugin irq +LoadPlugin df +LoadPlugin swap +LoadPlugin write_prometheus + +LoadPlugin logfile +<Plugin logfile> + LogLevel info + File "/var/log/collectd.log" + Timestamp true + PrintSeverity false +</Plugin> +<Plugin "cpu"> + Interval 5 + ReportByState false + ReportByCpu false +</Plugin> + +<Plugin "memory"> + Interval 30 + ValuesAbsolute false + ValuesPercentage true +</Plugin> + +<Plugin "write_prometheus"> + Port "{{ .Values.prometheus_port }}" +</Plugin> + +#Last line (collectd requires ā\nā at the last line) |