Skip to main content

insight_impact_graphs

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

Overview

Nameinsight_impact_graphs
TypeResource
Idaws.xray.insight_impact_graphs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
end_timestring (date-time)The provided end time.
insight_idstringThe insight's unique identifier. (pattern: <code>[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}</code>)
next_tokenstringPagination token.
service_graph_end_timestring (date-time)The time, in Unix seconds, at which the service graph ended.
service_graph_start_timestring (date-time)The time, in Unix seconds, at which the service graph started.
servicesarrayThe Amazon Web Services instrumented services related to the insight.
start_timestring (date-time)The provided start time.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_insight_impact_graphselectregionRetrieves a service graph structure filtered by the specified insight. The service graph is limited to only structural information. For a complete service graph, use this API with the GetServiceGraph API.

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

Retrieves a service graph structure filtered by the specified insight. The service graph is limited to only structural information. For a complete service graph, use this API with the GetServiceGraph API.

SELECT
end_time,
insight_id,
next_token,
service_graph_end_time,
service_graph_start_time,
services,
start_time
FROM aws.xray.insight_impact_graphs
WHERE region = '{{ region }}' -- required
;