annotation_queue_annotated_interactions
Creates, updates, deletes, gets or lists an annotation_queue_annotated_interactions resource.
Overview
| Name | annotation_queue_annotated_interactions |
| Type | Resource |
| Id | datadog.llm_observability.annotation_queue_annotated_interactions |
Fields
The following fields are returned by SELECT queries:
- get_llmobs_annotated_interactions
| Name | Datatype | Description |
|---|---|---|
id | string | The annotation queue ID. (example: 00000000-0000-0000-0000-000000000001) |
attributes | object | Attributes containing the list of annotated interactions. |
type | string | Resource type for annotated interactions. (annotated_interactions) (example: annotated_interactions) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_llmobs_annotated_interactions | select | queue_id | Retrieve all interactions (traces and sessions) and their annotations for a given annotation queue. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
queue_id | string | The ID of the Agent Observability annotation queue. (example: 00000000-0000-0000-0000-000000000001) |
site | string | The Datadog site (region) for your organization, for example datadoghq.com, us3.datadoghq.com, us5.datadoghq.com, ap1.datadoghq.com, ap2.datadoghq.com, datadoghq.eu, ddog-gov.com. Resolved from the DD_SITE environment variable when set. Optional: defaults to datadoghq.com, or the value of the DD_SITE environment variable when set; a WHERE value overrides both. |
SELECT examples
- get_llmobs_annotated_interactions
Retrieve all interactions (traces and sessions) and their annotations for a given annotation queue.
SELECT
id,
attributes,
type
FROM datadog.llm_observability.annotation_queue_annotated_interactions
WHERE queue_id = '{{ queue_id }}' -- required
;