Field | Description |
Name | Name of the service for which a circuit breaker is configured. |
State | The state of the circuit. The circuit state can be one of the following: Closed. The service executes. Open. The service does not execute. Instead, depending on the circuit breaker configuration, the service returns an exception or executes an alternative service. Half-Open. The first request for this service since the circuit state changes to half-open results in service execution. All other requests wait. If the service executes successfully, the circuit is closed and waiting requests execute. If the service ends with a failure exception, the circuit is re-opened. For a detailed explanation of possible circuit states, see
Circuit States. |
Open Time | Time at which circuit breaker last set the circuit state to open. |
Half-Open Time | Time at which circuit breaker last set the circuit state to half-open. |
Closed Time | Time at which the circuit breaker last set the circuit state to closed. |
Open Count | Number of times that circuit breaker set the circuit state to open since Microservices Runtime started. |
Request Count | Number of incoming requests for the service since the circuit breaker changed the circuit state to open. For information about how circuit breaker handles requests for a service with an open circuit, see How Does a Circuit Breaker for a Service Work?
How Does a Circuit Breaker for a Service
Work? . |