Skip to main content
Monitoring & Collection/Monitoring Misc
GETMonitoringSince 1.0SynchronousAuth Required

GetIsolationConfig

Retrieve the current tenant isolation configuration

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.

  • enabledBoolean

    Whether tenant isolation enforcement is active

    Example: true

  • tenantLabelNameString

    Label name used to identify tenant in metrics (e.g. tenant_id)

    Example: tenant_id

  • exemptTenantsList

    Exempt tenants

    Example: item1,item2

  • auditModeBoolean

    Whether to only log violations without blocking queries

    Example: false

  • blockOnViolationBoolean

    Whether to block queries that violate isolation policy

    Example: true

Endpoint

GET/api/v1/monitoring/isolation/config

/api/v1/monitoring/isolation/config

Operation ID

GetIsolationConfig

Permalink

Request Example

curl -X GET '{host}/api/v1/monitoring/isolation/config' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "enabled": true,
  "tenantLabelName": "tenant_id",
  "exemptTenants": [],
  "auditMode": false,
  "blockOnViolation": true
}

Change History

This API has no change history records yet.

View all change history