Skip to main content
Monitoring & Collection/Profiling
GETProfilingSince 1.0SynchronousAuth Required

GetProfilingCircuitBreakerStatus

Get the current circuit breaker state for profiling infrastructure.

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Request Inputs

This API requires no request parameters.

Responses

200 OK

On success, this API returns the following response structure.

  • stateString

    Current circuit breaker state.

    Example: closed

  • failureCountInteger

    Consecutive failure count that contributed to the current state.

    Example: 5

  • lastFailureAtString

    Timestamp of the most recent failure that affected the circuit breaker.

    Example: 2026-01-15T08:00:00Z

  • nextRetryAtString

    Timestamp when the circuit breaker will attempt its next probe.

    Example: 2026-01-15T08:00:00Z

  • retryAfterSecondsInteger

    Seconds to wait before the next retry attempt.

    Example: 30

Endpoint

GET/api/v1/profiling/circuit-status

/api/v1/profiling/circuit-status

Operation ID

GetProfilingCircuitBreakerStatus

Permalink

Request Example

curl -X GET '{host}/api/v1/profiling/circuit-status' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "state": "closed",
  "failureCount": 5,
  "lastFailureAt": "example",
  "nextRetryAt": "example",
  "retryAfterSeconds": 30
}

Change History

This API has no change history records yet.

View all change history