diff options
author | Rutuja Surve <rutuja.r.surve@gmail.com> | 2017-11-03 10:16:23 +0000 |
---|---|---|
committer | Rutuja Surve <rutuja.r.surve@gmail.com> | 2017-11-14 04:31:52 +0000 |
commit | 2b84ec5fef4272cf7df6f9c0ae5fb2c239a5b7cc (patch) | |
tree | 6c33b67ca7c808b3f6fb196c44d811154342edb4 /monitor/install-collectd-client.sh | |
parent | c839c94808a0fa2836c7d18546f32e5a6e24e37b (diff) |
Collectd Client-Server installation automation script
JIRA: BOTTLENECK-181
Automated the installation for collectd client from
jump server host and corrected docker versions in monitoring
script
Change-Id: I14ec20f2761c72e261aa1185a381f0c02b84ed45
Signed-off-by: Rutuja Surve <rutuja.r.surve@gmail.com>
Diffstat (limited to 'monitor/install-collectd-client.sh')
-rw-r--r-- | monitor/install-collectd-client.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/monitor/install-collectd-client.sh b/monitor/install-collectd-client.sh new file mode 100644 index 00000000..00fa4c88 --- /dev/null +++ b/monitor/install-collectd-client.sh @@ -0,0 +1,8 @@ +MONITOR_CONFIG="/etc/collectd-config" + +# Collectd +sudo docker run --name bottlenecks-automated-collectd -d \ + --privileged \ + -v ${MONITOR_CONFIG}:/etc/collectd:ro \ + -v /proc:/mnt/proc:ro \ + fr3nd/collectd:5.5.0-1 |