List tenant database probes
GET
/api/admin/logging-policies/runtime/tenant-db-probes
Code sample: Shell / cURL
curl --request GET \ --url 'https://auth.example.com/api/admin/logging-policies/runtime/tenant-db-probes?role=tenant_core' \ --header 'Authorization: Bearer <token>'List persisted tenant database probe results filtered by tenant and role.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” tenant_id
string
Tenant id filter. Platform admins can supply another tenant; tenant-scoped admins are constrained to their current tenant.
filter[tenant_id]
string
Alternative tenant id filter syntax.
role
string
Tenant database role filter.
limit
integer format: int64
Maximum number of probe results to return.
Responses
Section titled “ Responses ”Tenant database probe result list.
Media type application/json
object
items
required
Array<object>
object
key
additional properties
total
required
integer
page
object
key
additional properties
key
additional properties
Example
{ "items": [ { "id": "tdp_123", "tenant_id": "tenant_123", "role": "tenant_core", "shard_group": "default", "shard_index": 0, "generation": 1, "probe_kind": "write_read_delete", "status": "succeeded", "latency_ms": 12, "binding_ref": "DB", "connection_ref": null, "provider": "d1", "schema_version": 1, "error_class": null, "error_message": null, "metadata_json": "{\"health_status\":\"healthy\"}", "created_by": "admin_123", "created_at": 1770000000000 } ], "total": 1}default
Section titled “default ”Error response.
Media type application/json
object
error
string
message
string
error_description
string
key
additional properties
Example generated
{ "error": "example", "message": "example", "error_description": "example"}