Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions enterprise/streaming-events.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
You don't need to run an OTEL collector to use this feature. Events are delivered directly to your S3 bucket where you can:

- Query them directly using Athena, BigQuery, or similar tools
- Ingest into your data lake (Snowflake, Databricks, etc.)

Check warning on line 21 in enterprise/streaming-events.mdx

View check run for this annotation

Mintlify / Mintlify Validation (relevanceai) - vale-spellcheck

enterprise/streaming-events.mdx#L21

Did you really mean 'Databricks'?
- Forward to any OTEL-compatible backend for visualization and alerting

<Note>Enterprise customers can enable PII redaction to automatically protect sensitive information in logs. Contact your Account Manager to learn more.</Note>
Expand Down Expand Up @@ -282,6 +282,13 @@
| `relevance_ai.event.agent_id` | string | Yes | ID of the agent being published |
| `relevance_ai.event.version_id` | string | Yes | ID of the version now live |

**`conversation_deleted`** - Emitted when an agent conversation is deleted, either individually or as part of a bulk deletion. Each deleted conversation produces a separate event.

| Attribute | Type | Required | Description |
| --- | --- | --- | --- |
| `relevance_ai.event.conversation_id` | string | Yes | ID of the deleted conversation |
| `relevance_ai.event.agent_id` | string | Yes | ID of the agent the conversation belonged to |

### Tool events

**`tool_created`** - Emitted when a new tool is created (from scratch or cloned).
Expand Down Expand Up @@ -344,6 +351,13 @@
| `relevance_ai.event.workforce_id` | string | Yes | ID of the workforce being published |
| `relevance_ai.event.version_id` | string | No | ID of the version now live |

**`workforce_task_deleted`** - Emitted when a workforce task is deleted. This fires when tasks are deleted from the workforce UI, from the chat interface, or by automated data retention policies.

| Attribute | Type | Required | Description |
| --- | --- | --- | --- |
| `relevance_ai.event.workforce_id` | string | Yes | ID of the workforce the task belonged to |
| `relevance_ai.event.workforce_task_id` | string | Yes | ID of the deleted task |

### Permission events

**`project_user_role_updated`** - Emitted when a user's role within a project is updated. This occurs when an admin changes another user's access level in the project settings.
Expand Down Expand Up @@ -503,7 +517,7 @@

**Name**: `chat {model_name}`

<Warning>This span was previously named `llm_completion`. If you have existing dashboards or queries filtering on `gen_ai.operation.name = "llm_completion"` or span names containing `llm_completion`, update them to use `"chat"`. The rename aligns with the [OpenTelemetry GenAI semantic conventions](https://opentelemetry.io/docs/specs/semconv/gen-ai/).</Warning>

Check warning on line 520 in enterprise/streaming-events.mdx

View check run for this annotation

Mintlify / Mintlify Validation (relevanceai) - vale-spellcheck

enterprise/streaming-events.mdx#L520

Did you really mean 'llm_completion'?

Check warning on line 520 in enterprise/streaming-events.mdx

View check run for this annotation

Mintlify / Mintlify Validation (relevanceai) - vale-spellcheck

enterprise/streaming-events.mdx#L520

Did you really mean 'llm_completion'?

Check warning on line 520 in enterprise/streaming-events.mdx

View check run for this annotation

Mintlify / Mintlify Validation (relevanceai) - vale-spellcheck

enterprise/streaming-events.mdx#L520

Did you really mean 'llm_completion'?

| Attribute | Type | Required | Description |
| --- | --- | --- | --- |
Expand All @@ -523,7 +537,7 @@

**Attribute**: `gen_ai.tool.definitions`

<Warning>`gen_ai.tool.definitions` was previously an array type (`arrayValue`). It is now a JSON string (`stringValue`). If you consume this field in your pipeline or queries, you need to call `JSON.parse()` on the value to work with the tool definitions as structured data. The content is identical - the same tool definitions are present, just serialized as a string for better compatibility across OTEL exporters and backends.</Warning>

Check warning on line 540 in enterprise/streaming-events.mdx

View check run for this annotation

Mintlify / Mintlify Validation (relevanceai) - vale-spellcheck

enterprise/streaming-events.mdx#L540

Did you really mean 'arrayValue'?

Check warning on line 540 in enterprise/streaming-events.mdx

View check run for this annotation

Mintlify / Mintlify Validation (relevanceai) - vale-spellcheck

enterprise/streaming-events.mdx#L540

Did you really mean 'stringValue'?

### `multi_agent_system_trigger`

Expand Down
Loading