From cc57d9c83234468aa17b35156c00e40382ab603a Mon Sep 17 00:00:00 2001 From: MJB <mjb@it-innovation.soton.ac.uk> Date: Sat, 13 Jan 2018 00:09:22 +0000 Subject: [PATCH] added ipendpoint agents and VMs --- ...tick-stack-vm.sh => install-clmc-agent.sh} | 17 +-- ...ck-stack-vm.sh => install-clmc-service.sh} | 4 - .../install-tick-stack-docker-compose.sh | 51 -------- ...tack-services.sh => start-clmc-service.sh} | 6 +- scripts/influx/start-telegraf.sh | 28 ----- ...elegraf.conf => telegraf_ipendpoint1.conf} | 20 ++- scripts/influx/telegraf_ipendpoint2.conf | 116 ++++++++++++++++++ src/mediaServiceSim/LineProtocolGenerator.pyc | Bin 7698 -> 0 bytes .../LineProtocolGenerator.cpython-35.pyc | Bin 6488 -> 0 bytes .../LineProtocolGenerator.cpython-36.pyc | Bin 6021 -> 0 bytes 10 files changed, 133 insertions(+), 109 deletions(-) rename scripts/influx/{configure-tick-stack-vm.sh => install-clmc-agent.sh} (73%) rename scripts/influx/{install-tick-stack-vm.sh => install-clmc-service.sh} (92%) delete mode 100644 scripts/influx/install-tick-stack-docker-compose.sh rename scripts/influx/{start-tick-stack-services.sh => start-clmc-service.sh} (91%) delete mode 100644 scripts/influx/start-telegraf.sh rename scripts/influx/{telegraf.conf => telegraf_ipendpoint1.conf} (91%) create mode 100644 scripts/influx/telegraf_ipendpoint2.conf delete mode 100644 src/mediaServiceSim/LineProtocolGenerator.pyc delete mode 100644 src/mediaServiceSim/__pycache__/LineProtocolGenerator.cpython-35.pyc delete mode 100644 src/mediaServiceSim/__pycache__/LineProtocolGenerator.cpython-36.pyc diff --git a/scripts/influx/configure-tick-stack-vm.sh b/scripts/influx/install-clmc-agent.sh similarity index 73% rename from scripts/influx/configure-tick-stack-vm.sh rename to scripts/influx/install-clmc-agent.sh index 433e036..4a49b80 100644 --- a/scripts/influx/configure-tick-stack-vm.sh +++ b/scripts/influx/install-clmc-agent.sh @@ -1,7 +1,7 @@ #!/bin/bash #///////////////////////////////////////////////////////////////////////// #// -#// (c) University of Southampton IT Innovation Centre, 2018 +#// (c) University of Southampton IT Innovation Centre, 2017 #// #// Copyright in this software belongs to University of Southampton #// IT Innovation Centre of Gamma House, Enterprise Road, @@ -18,17 +18,18 @@ #// PURPOSE, except where stated in the Licence Agreement supplied with #// the software. #// -#// Created By : Simon Crowle -#// Created Date : 03/11/2018 +#// Created By : Michael Boniface +#// Created Date : 13/12/2017 #// Created for Project : FLAME #// #///////////////////////////////////////////////////////////////////////// -echo Configuring TICK stack services... +# Install telegraf +wget https://dl.influxdata.com/telegraf/releases/telegraf_1.3.2-1_amd64.deb +dpkg -i telegraf_1.3.2-1_amd64.deb -# Configure Telegraf -systemctl stop telegraf - -cp ./config/telegraf/telegraf.conf /etc/telegraf/ +# Copy configuration +cp $1 /etc/telegraf/telegraf.conf +# Start telegraf systemctl start telegraf \ No newline at end of file diff --git a/scripts/influx/install-tick-stack-vm.sh b/scripts/influx/install-clmc-service.sh similarity index 92% rename from scripts/influx/install-tick-stack-vm.sh rename to scripts/influx/install-clmc-service.sh index 0a49031..98b2858 100644 --- a/scripts/influx/install-tick-stack-vm.sh +++ b/scripts/influx/install-clmc-service.sh @@ -32,10 +32,6 @@ dpkg -i influxdb_1.2.4_amd64.deb wget https://dl.influxdata.com/kapacitor/releases/kapacitor_1.3.1_amd64.deb dpkg -i kapacitor_1.3.1_amd64.deb -# install Telegraf -wget https://dl.influxdata.com/telegraf/releases/telegraf_1.3.2-1_amd64.deb -dpkg -i telegraf_1.3.2-1_amd64.deb - # install Chronograf wget https://dl.influxdata.com/chronograf/releases/chronograf_1.3.3.0_amd64.deb dpkg -i chronograf_1.3.3.0_amd64.deb \ No newline at end of file diff --git a/scripts/influx/install-tick-stack-docker-compose.sh b/scripts/influx/install-tick-stack-docker-compose.sh deleted file mode 100644 index 7acc290..0000000 --- a/scripts/influx/install-tick-stack-docker-compose.sh +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/bash -#///////////////////////////////////////////////////////////////////////// -#// -#// (c) University of Southampton IT Innovation Centre, 2017 -#// -#// Copyright in this software belongs to University of Southampton -#// IT Innovation Centre of Gamma House, Enterprise Road, -#// Chilworth Science Park, Southampton, SO16 7NS, UK. -#// -#// This software may not be used, sold, licensed, transferred, copied -#// or reproduced in whole or in part in any manner or form or in or -#// on any media by any person other than in accordance with the terms -#// of the Licence Agreement supplied with the software, or otherwise -#// without the prior written consent of the copyright owners. -#// -#// This software is distributed WITHOUT ANY WARRANTY, without even the -#// implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -#// PURPOSE, except where stated in the Licence Agreement supplied with -#// the software. -#// -#// Created By : Michael Boniface -#// Created Date : 13/12/2017 -#// Created for Project : FLAME -#// -#///////////////////////////////////////////////////////////////////////// - -# install docker -apt-get -y update -apt-get -y install apt-transport-https ca-certificates curl software-properties-common -curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - -add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" -apt-get -y update -apt-get install docker-ce - -# to get a specific version look at the cache and run the install with that version -# apt-cache madison docker-ce -# apt-get install docker-ce=<VERSION> - -# test docker -# docker run hello-world - -# install docker compose -curl -L https://github.com/docker/compose/releases/download/1.17.0/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose -chmod +x /usr/local/bin/docker-compose -# test compose -docker-compose version 1.17.0, build 1719ceb - -# install tick stack -git clone https://github.com/influxdata/TICK-docker.git /opt -cd /opt/TICK-docker/1.3 -docker-compose up -d diff --git a/scripts/influx/start-tick-stack-services.sh b/scripts/influx/start-clmc-service.sh similarity index 91% rename from scripts/influx/start-tick-stack-services.sh rename to scripts/influx/start-clmc-service.sh index 603fc75..f92c6b5 100644 --- a/scripts/influx/start-tick-stack-services.sh +++ b/scripts/influx/start-clmc-service.sh @@ -28,8 +28,4 @@ echo Starting TICK stack services... systemctl start influxdb systemctl start kapacitor -#systemctl start telegraf -systemctl start chronograf - -# test influx -#curl "http://localhost:8086/query?q=show+databases" \ No newline at end of file +systemctl start chronograf \ No newline at end of file diff --git a/scripts/influx/start-telegraf.sh b/scripts/influx/start-telegraf.sh deleted file mode 100644 index e12bb9e..0000000 --- a/scripts/influx/start-telegraf.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/bash -#///////////////////////////////////////////////////////////////////////// -#// -#// (c) University of Southampton IT Innovation Centre, 2018 -#// -#// Copyright in this software belongs to University of Southampton -#// IT Innovation Centre of Gamma House, Enterprise Road, -#// Chilworth Science Park, Southampton, SO16 7NS, UK. -#// -#// This software may not be used, sold, licensed, transferred, copied -#// or reproduced in whole or in part in any manner or form or in or -#// on any media by any person other than in accordance with the terms -#// of the Licence Agreement supplied with the software, or otherwise -#// without the prior written consent of the copyright owners. -#// -#// This software is distributed WITHOUT ANY WARRANTY, without even the -#// implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -#// PURPOSE, except where stated in the Licence Agreement supplied with -#// the software. -#// -#// Created By : Simon Crowle -#// Created Date : 03/11/2018 -#// Created for Project : FLAME -#// -#///////////////////////////////////////////////////////////////////////// - -echo Starting Telegraf services... -systemctl start telegraf \ No newline at end of file diff --git a/scripts/influx/telegraf.conf b/scripts/influx/telegraf_ipendpoint1.conf similarity index 91% rename from scripts/influx/telegraf.conf rename to scripts/influx/telegraf_ipendpoint1.conf index c683737..7844869 100644 --- a/scripts/influx/telegraf.conf +++ b/scripts/influx/telegraf_ipendpoint1.conf @@ -11,9 +11,12 @@ # Global tags can be specified here in key="value" format. [global_tags] - # dc = "us-east-1" # will tag all metrics with dc=us-east-1 - # rack = "1a" - auth = "IT-Inn" + location="DC1" + sfc="MS_Template_1" + sfc_i="MS_I1" + sf="adaptive_streaming" + sf_i="adaptive_streaming_I1" + ipendpoint="adaptive_streaming_I1_ipendpoint1" # Configuration for telegraf agent [agent] @@ -65,7 +68,7 @@ # Multiple urls can be specified but it is assumed that they are part of the same # cluster, this means that only ONE of the urls will be written to each interval. # urls = ["udp://127.0.0.1:8089"] # UDP endpoint example - urls = ["http://localhost:8086"] # required + urls = ["http://192.168.50.10:8086"] # required # The target database for metrics (telegraf will create it if not exists) database = "CLMCMetrics" # required # Precision of writes, valid values are "ns", "us" (or "µs"), "ms", "s", "m", "h". @@ -95,15 +98,6 @@ ############################################################################### # INPUTS # ############################################################################### -# Read metrics about cpu usage -[[inputs.cpu]] - ## Whether to report per-cpu stats or not - percpu = true - ## Whether to report total system cpu stats or not - totalcpu = true - ## If true, collect raw CPU time metrics. - collect_cpu_time = false - # # Influx HTTP write listener [[inputs.http_listener]] ## Address and port to host HTTP listener on diff --git a/scripts/influx/telegraf_ipendpoint2.conf b/scripts/influx/telegraf_ipendpoint2.conf new file mode 100644 index 0000000..e0d62af --- /dev/null +++ b/scripts/influx/telegraf_ipendpoint2.conf @@ -0,0 +1,116 @@ +# Telegraf configuration + +# Telegraf is entirely plugin driven. All metrics are gathered from the +# declared inputs, and sent to the declared outputs. + +# Plugins must be declared in here to be active. +# To deactivate a plugin, comment out the name and any variables. + +# Use 'telegraf -config telegraf.conf -test' to see what metrics a config +# file would generate. + +# Global tags can be specified here in key="value" format. +[global_tags] + location="DC2" + sfc="MS_Template_1" + sfc_i="MS_I1" + sf="adaptive_streaming" + sf_i="adaptive_streaming_I1" + ipendpoint="adaptive_streaming_I1_ipendpoint2" + +# Configuration for telegraf agent +[agent] + ## Default data collection interval for all inputs + interval = "10s" + ## Rounds collection interval to 'interval' + ## ie, if interval="10s" then always collect on :00, :10, :20, etc. + round_interval = true + + ## Telegraf will cache metric_buffer_limit metrics for each output, and will + ## flush this buffer on a successful write. + metric_buffer_limit = 1000 + ## Flush the buffer whenever full, regardless of flush_interval. + flush_buffer_when_full = true + + ## Collection jitter is used to jitter the collection by a random amount. + ## Each plugin will sleep for a random time within jitter before collecting. + ## This can be used to avoid many plugins querying things like sysfs at the + ## same time, which can have a measurable effect on the system. + collection_jitter = "0s" + + ## Default flushing interval for all outputs. You shouldn't set this below + ## interval. Maximum flush_interval will be flush_interval + flush_jitter + flush_interval = "10s" + ## Jitter the flush interval by a random amount. This is primarily to avoid + ## large write spikes for users running a large number of telegraf instances. + ## ie, a jitter of 5s and interval 10s means flushes will happen every 10-15s + flush_jitter = "0s" + + ## Logging configuration: + ## Run telegraf in debug mode + debug = false + ## Run telegraf in quiet mode + quiet = false + ## Specify the log file name. The empty string means to log to stdout. + logfile = "G:/Telegraf/telegraf.log" + + ## Override default hostname, if empty use os.Hostname() + hostname = "" + + +############################################################################### +# OUTPUTS # +############################################################################### + +# Configuration for influxdb server to send metrics to +[[outputs.influxdb]] + # The full HTTP or UDP endpoint URL for your InfluxDB instance. + # Multiple urls can be specified but it is assumed that they are part of the same + # cluster, this means that only ONE of the urls will be written to each interval. + # urls = ["udp://127.0.0.1:8089"] # UDP endpoint example + urls = ["http://192.168.50.10:8086"] # required + # The target database for metrics (telegraf will create it if not exists) + database = "CLMCMetrics" # required + # Precision of writes, valid values are "ns", "us" (or "µs"), "ms", "s", "m", "h". + # note: using second precision greatly helps InfluxDB compression + precision = "s" + + ## Write timeout (for the InfluxDB client), formatted as a string. + ## If not provided, will default to 5s. 0s means no timeout (not recommended). + timeout = "5s" + # username = "telegraf" + # password = "metricsmetricsmetricsmetrics" + # Set the user agent for HTTP POSTs (can be useful for log differentiation) + # user_agent = "telegraf" + # Set UDP payload size, defaults to InfluxDB UDP Client default (512 bytes) + # udp_payload = 512 +[[outputs.file]] + ## Files to write to, "stdout" is a specially handled file. + files = ["stdout", "/tmp/metrics.out"] + + ## Data format to output. + ## Each data format has its own unique set of configuration options, read + ## more about them here: + ## https://github.com/influxdata/telegraf/blob/master/docs/DATA_FORMATS_OUTPUT.md + data_format = "influx" + + +############################################################################### +# INPUTS # +############################################################################### +# # Influx HTTP write listener +[[inputs.http_listener]] + ## Address and port to host HTTP listener on + service_address = ":8186" + + ## timeouts + read_timeout = "10s" + write_timeout = "10s" + + ## HTTPS + #tls_cert= "/etc/telegraf/cert.pem" + #tls_key = "/etc/telegraf/key.pem" + + ## MTLS + #tls_allowed_cacerts = ["/etc/telegraf/clientca.pem"] + \ No newline at end of file diff --git a/src/mediaServiceSim/LineProtocolGenerator.pyc b/src/mediaServiceSim/LineProtocolGenerator.pyc deleted file mode 100644 index 1701c03b9385cc1425c3fa5d41d61ece154e0044..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 7698 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 diff --git a/src/mediaServiceSim/__pycache__/LineProtocolGenerator.cpython-35.pyc b/src/mediaServiceSim/__pycache__/LineProtocolGenerator.cpython-35.pyc deleted file mode 100644 index ac11f6a88b988c0bd96dbc026a0b0facd6e6c2b0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6488 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 diff --git a/src/mediaServiceSim/__pycache__/LineProtocolGenerator.cpython-36.pyc b/src/mediaServiceSim/__pycache__/LineProtocolGenerator.cpython-36.pyc deleted file mode 100644 index b8bb4785ef85f853c379898f7b6b17715734a63b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6021 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 -- GitLab