mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
2fd7bfc37a
Signed-off-by: Alexei Dodon <adodon@cisco.com>
6 lines
221 B
Bash
6 lines
221 B
Bash
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} ]
|
|
}
|