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

UpdateRateLimitConfig

Update the rate limit configuration for profiling operations.

Execution Availability

Try It Out

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

Request Inputs

Body Fields

  • configObjectRequired

    New rate limit configuration to apply to profiling operations.

    • cpuSessionGlobalPerMinInteger

      Global per-minute limit for CPU profiling sessions.

      Example: 10

    • heapSessionPerTenantPerMinInteger

      Per-tenant per-minute limit for heap profiling sessions.

      Example: 5

    • flameDataPerTenantPerMinInteger

      Per-tenant per-minute limit for flame data requests.

      Example: 30

Responses

200 OK

On success, this API returns the following response structure.

  • cpuSessionGlobalPerMinInteger

    Global per-minute limit for CPU profiling sessions.

    Example: 10

  • heapSessionPerTenantPerMinInteger

    Per-tenant per-minute limit for heap profiling sessions.

    Example: 5

  • flameDataPerTenantPerMinInteger

    Per-tenant per-minute limit for flame data requests.

    Example: 30

Endpoint

PUT/api/v1/profiling/rate-limit-config

/api/v1/profiling/rate-limit-config

Operation ID

UpdateRateLimitConfig

Permalink

Request Example

curl -X PUT '{host}/api/v1/profiling/rate-limit-config' -H 'Authorization: Bearer {token}' -H 'Content-Type: application/json' -d '{"config":{"cpuSessionGlobalPerMin":10,"heapSessionPerTenantPerMin":5,"flameDataPerTenantPerMin":30}}'

Response Example

200
{
  "cpuSessionGlobalPerMin": 10,
  "heapSessionPerTenantPerMin": 5,
  "flameDataPerTenantPerMin": 30
}

Change History

This API has no change history records yet.

View all change history