aboutsummaryrefslogtreecommitdiffstats
path: root/performanceTests/k8s/collectd/config/collectd.conf
diff options
context:
space:
mode:
authorVijay Venkatesh Kumar <vv770d@att.com>2020-06-11 20:39:21 +0000
committerGerrit Code Review <gerrit@onap.org>2020-06-11 20:39:21 +0000
commit4529faa9cdbc16209cbca24a964d709552c9fe2d (patch)
tree16d414397a7232e196219a47230c5cef48bc3bdf /performanceTests/k8s/collectd/config/collectd.conf
parent85e7a08c4b64fcd832387a9d5b80b7f4624a3afd (diff)
parent3b6ba181623e844d5012362209d2f29616315395 (diff)
Merge "Add CPU/RAM measurements collection"
Diffstat (limited to 'performanceTests/k8s/collectd/config/collectd.conf')
-rw-r--r--performanceTests/k8s/collectd/config/collectd.conf30
1 files changed, 30 insertions, 0 deletions
diff --git a/performanceTests/k8s/collectd/config/collectd.conf b/performanceTests/k8s/collectd/config/collectd.conf
new file mode 100644
index 00000000..62ec70d5
--- /dev/null
+++ b/performanceTests/k8s/collectd/config/collectd.conf
@@ -0,0 +1,30 @@
+FQDNLookup true
+
+LoadPlugin syslog
+LoadPlugin cpu
+LoadPlugin memory
+LoadPlugin network
+
+<Plugin syslog>
+ LogLevel info
+</Plugin>
+
+<Plugin cpu>
+ ReportByCpu false
+ ReportByState false
+ ValuesPercentage true
+ Interval 5
+</Plugin>
+
+<Plugin memory>
+ ValuesAbsolute false
+ ValuesPercentage true
+</Plugin>
+
+<Plugin network>
+ Server "10.183.39.145" "30003"
+</Plugin>
+
+<Include "/etc/collectd/collectd.conf.d">
+ Filter "*.conf"
+</Include>