Get Slowest Operations
Get slowest individual operations.
Returns the slowest profiled operations, useful for debugging specific slow executions.
Use Cases:
- Troubleshoot specific slow operations
- Identify outliers
- Deep dive into problematic executions
Filtering:
threshold_ms: Only show operations slower than this- Default: 1000ms (1 second)
Response:
- Timestamp of slow operation
- Stage name and component
- Latency in milliseconds
- Full metadata context
Example:
GET /v1/analytics/performance/engine/slow-operations?hours=24&threshold_ms=5000
Authorizations
Mixpeek API key, sent as Authorization: Bearer mxp_sk_.... Create one in Studio under Settings → API Keys, or with an admin key via POST /v1/organizations/users/{user_email}/api-keys. A missing header returns 403; an invalid or revoked key returns 401.
Namespace id (ns_...), not the namespace name. This scopes the request rather than authenticating it, and it is required on every operation marked x-mixpeek-namespace-scoped.
Query Parameters
Hours of history
1 <= x <= 168Number of operations to return
1 <= x <= 1000Only show operations slower than this (ms)
x >= 0
