Skip to main content

topic_discovery_run_statuses

Creates, updates, deletes, gets or lists a topic_discovery_run_statuses resource.

Overview

Nametopic_discovery_run_statuses
TypeResource
Iddatadog.llm_observability.topic_discovery_run_statuses

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe ID of the patterns run. (example: 3fd6b5e0-8910-4b1c-a7d0-5b84de329012)
attributesobjectAttributes of an Agent Observability patterns run status.
typestringResource type of an Agent Observability patterns run status. (topic_discovery_run_status) (example: topic_discovery_run_status)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_llmobs_patterns_run_statusselectconfig_idRetrieve the status and step-by-step progress of the current or most recent<br />patterns run for a configuration.

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
config_idstringThe ID of the patterns configuration. (example: a7c8d9e0-1234-5678-9abc-def012345678)
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 the status and step-by-step progress of the current or most recent<br />patterns run for a configuration.

SELECT
id,
attributes,
type
FROM datadog.llm_observability.topic_discovery_run_statuses
WHERE config_id = '{{ config_id }}' -- required
;