Update an existing auto monitor setup by its external ID
Documentation Index
Fetch the complete documentation index at: https://enrolla-gz-new-docs-for-auto-monitor.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Auto monitor setup external ID
Fields to update
On update, both evaluators and evaluator_configs may be empty — in that case the evaluator list is not modified. If both are provided, evaluator_configs wins and evaluators is ignored.
List of evaluator slugs to run on matched spans. Use evaluator_configs instead when you need to set a per-evaluator scope. If both fields are provided, evaluator_configs takes precedence and this field is ignored.
["hallucination", "toxicity"]List of per-evaluator configurations. Each entry declares an evaluator slug and an optional scope (session, trace, or span) controlling the granularity at which the evaluator runs. Takes precedence over evaluators when both are provided.
[
{ "slug": "char-count", "scope": "session" },
{ "slug": "toxicity", "scope": "trace" },
{ "slug": "pii" }
]Map of span attributes to filter which spans this monitor applies to. Keys are span attribute names (e.g. gen_ai.system, gen_ai.request.model) and values can be strings, numbers, or booleans. Example: {"gen_ai.system": "openai", "gen_ai.request.model": "gpt-4o", "gen_ai.request.max_tokens": 1000}