topic_discovery_run_statuses
Creates, updates, deletes, gets or lists a topic_discovery_run_statuses resource.
Overview
| Name | topic_discovery_run_statuses |
| Type | Resource |
| Id | datadog.llm_observability.topic_discovery_run_statuses |
Fields
The following fields are returned by SELECT queries:
- get_llmobs_patterns_run_status
| Name | Datatype | Description |
|---|---|---|
id | string | The ID of the patterns run. (example: 3fd6b5e0-8910-4b1c-a7d0-5b84de329012) |
attributes | object | Attributes of an Agent Observability patterns run status. |
type | string | Resource 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_llmobs_patterns_run_status | select | config_id | Retrieve 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.
| Name | Datatype | Description |
|---|---|---|
config_id | string | The ID of the patterns configuration. (example: a7c8d9e0-1234-5678-9abc-def012345678) |
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_patterns_run_status
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
;