-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
not sure how gh action docker networks work but let's see
- Loading branch information
1 parent
298b693
commit 0f74eb8
Showing
4 changed files
with
37 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/usr/bin/env bash | ||
|
||
until curl -sSfo /dev/null http://localhost:3000/api/datasources/uid/prometheus/health; do echo Waiting for Grafana; sleep 1; done | ||
curl -sSfo /dev/null http://localhost:3000/api/datasources/uid/loki/health | ||
curl -sSfo /dev/null http://localhost:8080/actuator/health | ||
#docker compose ps --services --status running |grep tempo | ||
# tempo datasource health checks in grafana aren't supported as of now so just check ingester readiness | ||
until curl -sSfo /dev/null http://localhost:3200/ready; do echo Waiting for Tempo; sleep 1; done | ||
|