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

GetRateLimitStats

Get current rate limit usage statistics across all profiling buckets.

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.

  • itemsList

    List of rate limit buckets with current usage statistics.

    Example: (nested array)

    • bucketNameString

      Name identifying this rate limit bucket.

      Example: cpu-session-global

    • limitInteger

      Maximum allowed requests per window for this bucket.

      Example: 60

    • windowSecondsInteger

      Duration in seconds of the rate limit window.

      Example: 60

    • currentUsageInteger

      Number of requests consumed in the current window.

      Example: 12

    • throttledCount1hString

      Number of requests throttled in the last hour.

      Example: 3

    • lastThrottledAtString

      Timestamp of the most recent throttle event, if any.

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

Endpoint

GET/api/v1/profiling/rate-limit-stats

/api/v1/profiling/rate-limit-stats

Operation ID

GetRateLimitStats

Permalink

Request Example

curl -X GET '{host}/api/v1/profiling/rate-limit-stats' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "items": [
    {}
  ]
}

Change History

This API has no change history records yet.

View all change history