diff options
Diffstat (limited to 'performanceTests/k8s/collectd')
-rw-r--r-- | performanceTests/k8s/collectd/Makefile | 5 | ||||
-rw-r--r-- | performanceTests/k8s/collectd/config/collectd.conf | 30 | ||||
-rwxr-xr-x | performanceTests/k8s/collectd/config/install_collectd.sh | 6 |
3 files changed, 0 insertions, 41 deletions
diff --git a/performanceTests/k8s/collectd/Makefile b/performanceTests/k8s/collectd/Makefile deleted file mode 100644 index 38f2ebf8..00000000 --- a/performanceTests/k8s/collectd/Makefile +++ /dev/null @@ -1,5 +0,0 @@ - -install-collectd: - @echo "\n##### Install collectd #####" - @bash config/install_collectd.sh - @echo "##### DONE #####" diff --git a/performanceTests/k8s/collectd/config/collectd.conf b/performanceTests/k8s/collectd/config/collectd.conf deleted file mode 100644 index 62ec70d5..00000000 --- a/performanceTests/k8s/collectd/config/collectd.conf +++ /dev/null @@ -1,30 +0,0 @@ -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> diff --git a/performanceTests/k8s/collectd/config/install_collectd.sh b/performanceTests/k8s/collectd/config/install_collectd.sh deleted file mode 100755 index dbc35fed..00000000 --- a/performanceTests/k8s/collectd/config/install_collectd.sh +++ /dev/null @@ -1,6 +0,0 @@ -#! /bin/bash - -sudo apt-get update && sudo apt-get install collectd -y -sudo cp config/collectd.conf /etc/collectd/collectd.conf -sudo service collectd restart - |