prometheusmetricshost-metricsmachine-metricsnode-metricsprocfsprometheus-exportersystem-informationsystem-metrics
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
462 B
30 lines
462 B
8 years ago
|
#!/bin/bash
|
||
|
set -exo pipefail
|
||
|
|
||
|
docker_image=$1
|
||
|
port=$2
|
||
|
|
||
|
wait_start() {
|
||
|
for in in {1..10}; do
|
||
|
if /usr/bin/curl -s -m 5 -f "http://localhost:${port}/metrics" > /dev/null ; then exit 0 ;
|
||
|
else
|
||
|
sleep 1
|
||
|
fi
|
||
|
done
|
||
|
|
||
|
exit 1
|
||
|
|
||
|
}
|
||
|
|
||
|
docker_start() {
|
||
|
docker run -d -p "${port}":"${port}" "${docker_image}"
|
||
|
}
|
||
|
|
||
|
if [[ "$#" -ne 2 ]] ; then
|
||
|
echo "Usage: $0 quay.io/prometheus/node-exporter:v0.13.0 9100" >&2
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
docker_start
|
||
|
wait_start
|