X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=scripts%2Fprometheus.sh;fp=scripts%2Fprometheus.sh;h=f2a3c17c4cf79111bbbfdbfe9aeef949df4fb9d1;hb=16e0954d8dd8994a3ac95901e75dcf014c6e747a;hp=0000000000000000000000000000000000000000;hpb=27e9f5fb9f12ba20b1b45e322d2bcfcae5b0da6f;p=eliot.git diff --git a/scripts/prometheus.sh b/scripts/prometheus.sh new file mode 100755 index 0000000..f2a3c17 --- /dev/null +++ b/scripts/prometheus.sh @@ -0,0 +1,23 @@ +#!/bin/bash -ex +############################################################################## +# Copyright (c) 2019 Huawei Tech and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + +# start +PROMETHEUS_HOST_PORT="9090" +PROMETHEUS_CONTAINTER_PORT="9090" +#cp ci_management/prometheus.yml $HOME +source generatePromeyml.sh +if [ ! -d "/etc/prometheus" ]; then + sudo mkdir /etc/prometheus +fi + +sudo docker run -p ${PROMETHEUS_HOST_PORT}:${PROMETHEUS_CONTAINTER_PORT} \ + -v ~/prometheus.yml:/etc/prometheus/prometheus.yml \ + -d prom/prometheus \ + --config.file=/etc/prometheus/prometheus.yml