Skip to main content

telemetry_enrichment_status

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

Overview

Nametelemetry_enrichment_status
TypeResource
Idaws.observabilityadmin.telemetry_enrichment_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
aws_resource_explorer_managed_view_arnstringThe 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>)
statusstringThe 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:

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

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;