Skip to main content
GET
/
v1
/
observability
/
{workspaceId}
/
issues
Detect anomalies in errors, latency, and traffic
curl --request GET \
  --url https://{host}/v2/workspaces/slug:ai-governance-v2/webhooks/v1/observability/{workspaceId}/issues \
  --header 'Authorization: Bearer <token>'
{
  "workspaceId": "<string>",
  "analyzedAt": "2023-11-07T05:31:56Z",
  "sensitivity": "low",
  "baseline": {
    "period": "<string>",
    "avgExecsPerHour": 123,
    "avgErrorsPerHour": 123,
    "avgLatencyMs": 123
  },
  "recent": {
    "period": "<string>",
    "executions": 123,
    "errors": 123,
    "avgLatencyMs": 123
  },
  "issueCount": 123,
  "issues": [
    {
      "type": "error_spike",
      "severity": "warning",
      "message": "<string>",
      "current": 123,
      "baseline": 123,
      "threshold": 123
    }
  ],
  "status": "alert"
}

Documentation Index

Fetch the complete documentation index at: https://docs.prisme.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

User session JWT or instance API key (iak_*). Send as Authorization: Bearer <token>.

Path Parameters

workspaceId
string
required

Workspace identifier.

Maximum string length: 64
Pattern: ^[a-zA-Z0-9_-]+$

Query Parameters

sensitivity
enum<string>

Detection sensitivity (default medium).

Available options:
low,
medium,
high
Maximum string length: 10

Response

Issue analysis.

workspaceId
string
analyzedAt
string<date-time>
sensitivity
enum<string>
Available options:
low,
medium,
high
baseline
object
recent
object
issueCount
integer
issues
object[]
status
enum<string>
Available options:
alert,
healthy