You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
==== Supported Types by Spring boot starter resilience aspects
21
24
22
-
Rate limiter , Retry , Circuit breaker and Bulkhead now support Synchronous return types ,CompletableFutures , RxJava2 types and Reactor types .
25
+
RateLimiter, Retry, CircuitBreaker and Bulkhead annotations support synchronous return types, asynchronous types like CompletableFutures and reactive types like RxJava2 and Reactor.
23
26
24
27
==== Monitoring
25
28
26
29
Spring Boot Actuator health information can be used to check the status of your running application.
27
30
It is often used by monitoring software to alert someone if a production system has serious issues.
28
31
29
-
==== Retry
30
-
When you enable retry, metrics are automatically published on the metrics endpoint.
When you want to publish Retry/AsyncRetry endpoints on the Prometheus endpoint, you have to add the dependency `io.micrometer:micrometer-registry-prometheus`.
47
-
and you have same metrics exposed there , check circuit breaker below for more information about the example.
48
-
49
32
==== CircuitBreaker
50
-
This demo publishes the status and metrics of all CircuitBreakers via a custom `CircuitBreakerHealthIndicator`.
33
+
The starter publishes the status and metrics of all CircuitBreakers via a custom `CircuitBreakerHealthIndicator`.
51
34
A closed CircuitBreaker state is mapped to UP, an open state to DOWN and a half-open state to UNKNOWN.
When you want to publish Retry/AsyncRetry endpoints on the Prometheus endpoint, you have to add the dependency `io.micrometer:micrometer-registry-prometheus`.
127
+
and you have same metrics exposed there , check circuit breaker below for more information about the example.
128
+
126
129
==== RateLimiter
127
-
This demo publishes the status and metrics of all RateLimiter via a custom `RateLimiterHealthIndicator`.
130
+
The starter publishes the status and metrics of all RateLimiter via a custom `RateLimiterHealthIndicator`.
128
131
RateLimiterHealthIndicator changes its state DOWN only if there is some permission waiting threads
0 commit comments