insight_impact_graphs
Creates, updates, deletes, gets or lists an insight_impact_graphs resource.
Overview
| Name | insight_impact_graphs |
| Type | Resource |
| Id | aws.xray.insight_impact_graphs |
Fields
The following fields are returned by SELECT queries:
- get_insight_impact_graph
| Name | Datatype | Description |
|---|---|---|
end_time | string (date-time) | The provided end time. |
insight_id | string | The 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_token | string | Pagination token. |
service_graph_end_time | string (date-time) | The time, in Unix seconds, at which the service graph ended. |
service_graph_start_time | string (date-time) | The time, in Unix seconds, at which the service graph started. |
services | array | The Amazon Web Services instrumented services related to the insight. |
start_time | string (date-time) | The provided start time. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_insight_impact_graph | select | region | 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. |
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_insight_impact_graph
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
;