13 lines
230 B
Bash
13 lines
230 B
Bash
#!/bin/bash
|
|
|
|
if [[ $(CreoleGet activer_prometheus) == "oui" ]]
|
|
then
|
|
. /usr/lib/eole/diagnose.sh
|
|
|
|
EchoGras "*** Accès au serveur Prometheus"
|
|
TestHTTPPage "Prometheus server" "http://localhost:9090"
|
|
echo
|
|
fi
|
|
|
|
exit 0
|