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