public interface AbstractCircuitBreakerStatus
Modifier and Type | Method and Description |
---|---|
double |
getFailedThroughputOneMinute()
Failed calls per second for the last minute.
|
String |
getId()
Circuit breaker identifier.
|
Latency |
getLatencyMicros()
Latency distribution for Exponentially Decaying Reservoir.
|
String |
getState()
Circuit breaker state; closed, open, half-open.
|
double |
getThroughputOneMinute()
Total (successful + failed) calls per second for the last minute.
|
default Instant |
getTimestamp() |
long |
getTotalFailureCount()
Total number of failed calls.
|
long |
getTotalSuccessCount()
Total number of successful calls.
|
String getId()
@Value.Default default Instant getTimestamp()
String getState()
long getTotalSuccessCount()
long getTotalFailureCount()
Latency getLatencyMicros()
double getThroughputOneMinute()
double getFailedThroughputOneMinute()