Skip to main content

annotation_queue_annotated_interactions

Creates, updates, deletes, gets or lists an annotation_queue_annotated_interactions resource.

Overview

Nameannotation_queue_annotated_interactions
TypeResource
Iddatadog.llm_observability.annotation_queue_annotated_interactions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe annotation queue ID. (example: 00000000-0000-0000-0000-000000000001)
attributesobjectAttributes containing the list of annotated interactions.
typestringResource type for annotated interactions. (annotated_interactions) (example: annotated_interactions)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_llmobs_annotated_interactionsselectqueue_idRetrieve 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.

NameDatatypeDescription
queue_idstringThe ID of the Agent Observability annotation queue. (example: 00000000-0000-0000-0000-000000000001)
sitestringThe 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

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
;