telemetry_enrichment_status
Creates, updates, deletes, gets or lists a telemetry_enrichment_status resource.
Overview
| Name | telemetry_enrichment_status |
| Type | Resource |
| Id | aws.observabilityadmin.telemetry_enrichment_status |
Fields
The following fields are returned by SELECT queries:
- get_telemetry_enrichment_status
| Name | Datatype | Description |
|---|---|---|
aws_resource_explorer_managed_view_arn | string | The Amazon Resource Name (ARN) of the Resource Explorer managed view used for resource tags for telemetry, if the feature is enabled. (pattern: <code>arn:aws([a-z0-9-]+)?:resource-explorer-2:([a-z0-9-]+)?:([0-9]{12})?:managed-view/(.+)</code>) |
status | string | The current status of the resource tags for telemetry feature (Running, Stopped, or Impaired). (Running, Stopped, Impaired) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_telemetry_enrichment_status | select | region | Returns the current status of the resource tags for telemetry feature, which enhances telemetry data with additional resource metadata from Resource Explorer. |
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 |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_telemetry_enrichment_status
Returns the current status of the resource tags for telemetry feature, which enhances telemetry data with additional resource metadata from Resource Explorer.
SELECT
aws_resource_explorer_managed_view_arn,
status
FROM aws.observabilityadmin.telemetry_enrichment_status
WHERE region = '{{ region }}' -- required
;