8c67b44052
* Add new `/health` endpoint to check if exporter is running correctly * Update docker healthcheck to use the new endpoint https://gitlab.com/hectorjsmith/fail2ban-prometheus-exporter/-/merge_requests/110
8 lines
172 B
Bash
Executable file
8 lines
172 B
Bash
Executable file
#!/bin/sh
|
|
|
|
port=9191
|
|
if [ ! -z $F2B_WEB_LISTEN_ADDRESS ]; then
|
|
port=`echo $F2B_WEB_LISTEN_ADDRESS | cut -d ":" -f 2 -`
|
|
fi
|
|
|
|
curl --fail localhost:$port/health || exit 1
|