mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
a345ba0823
Signed-off-by: Alexei Dodon <adodon@cisco.com>
9 lines
275 B
Bash
9 lines
275 B
Bash
METRICS_USER=observability
|
|
METRICS_PASS=MySecreTPa55
|
|
|
|
function metrics_route_check () {
|
|
local servername="http://127.0.0.1:${1}/metrics"
|
|
status_code=$(curl --write-out '%{http_code}' ${2} --silent --output /dev/null ${servername})
|
|
|
|
[ "$status_code" -eq ${3} ]
|
|
}
|