We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 426059f commit b792d3cCopy full SHA for b792d3c
tests/test.bats
@@ -12,16 +12,14 @@ setup() {
12
}
13
14
health_checks() {
15
- # A workaround for the error:
16
- # Ingester not ready: waiting for 15s after being ready
17
- sleep 15
18
-
19
# Grafana service
20
ddev exec "curl -s http://grafana:3000/api/health"
21
22
# Loki service
23
- ddev exec "curl -s http://loki:3100/ready"
24
- ddev exec "curl -s http://localhost:3100/ready"
+ # Loki takes 15+ secs to initialize, so use the http://tempo:loki/ready url
+ # is not a good idea, just checking the metrics endpoint.
+ ddev exec "curl -s http://loki:3100/metrics"
+ ddev exec "curl -s http://localhost:3100/metrics"
25
26
# Prometeus service
27
ddev exec "curl -s http://prometheus:9090/-/ready"
0 commit comments