Skip to content

Commit f0c0196

Browse files
authored
doc: health indicators (#11746)
1 parent 738b809 commit f0c0196

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -1 +1,35 @@
11
All the Micronaut framework provided health indicators are exposed on `/health` and `/health/readiness` endpoints.
2+
3+
|===
4+
| Indicator | Configuration Toggle | Default Value
5+
6+
7+
| `DeadlockedThreadsHealthIndicator`
8+
Checks for deadlocked threads.
9+
| `endpoints.health.deadlocked-threads.enabled`
10+
| `true`
11+
12+
| `DiscoveryClientHealthIndicator`
13+
| `endpoints.health.discovery-client-health.enabled`
14+
| `true`
15+
16+
| `DiskSpaceIndicator`
17+
Checks if the server's disk space is less than the configured threshold
18+
| `endpoints.health.disk-space.enabled`
19+
| `true`
20+
21+
| `JdbcIndicator`
22+
Checks if the JDBC connection is valid
23+
| `endpoints.health.jdbc.enabled`
24+
| `true`
25+
26+
| `ServiceHttpClientHealthIndicator`
27+
Check if there are available URLs in the load balancer.
28+
| `endpoints.health.service-http-client.enabled`
29+
| `false`
30+
31+
| `ServiceReadyHealthIndicator` - Signals when the service is ready to service requests.
32+
| `endpoints.health.service-ready-indicator-enabled`
33+
| `true`
34+
35+
|===

0 commit comments

Comments
 (0)