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.
14 lines
531 B
14 lines
531 B
#!/usr/bin/with-contenv bash
|
|
|
|
echo "waiting for scrutiny service to start"
|
|
s6-svwait -u /var/run/s6/services/scrutiny
|
|
|
|
#tell s6 to only run this script once
|
|
s6-svc -O /var/run/s6/services/collector-once
|
|
|
|
# wait until scrutiny is "Ready"
|
|
until $(curl --output /dev/null --silent --head --fail http://localhost:8080/api/health); do echo "scrutiny api not ready" && sleep 5; done
|
|
|
|
echo "starting scrutiny collector (run-once mode. subsequent calls will be triggered via cron service)"
|
|
/opt/scrutiny/bin/scrutiny-collector-metrics run
|