insight_summaries
Creates, updates, deletes, gets or lists an insight_summaries resource.
Overview
| Name | insight_summaries |
| Type | Resource |
| Id | aws.xray.insight_summaries |
Fields
The following fields are returned by SELECT queries:
- get_insight_summaries
| Name | Datatype | Description |
|---|---|---|
insight_summaries | array | The summary of each insight within the group matching the provided filters. The summary contains the InsightID, start and end time, the root cause service, the root cause and client impact statistics, the top anomalous services, and the status of the insight. |
next_token | string | Pagination token. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_insight_summaries | select | region | Retrieves the summaries of all insights in the specified group matching the provided filter values. |
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_summaries
Retrieves the summaries of all insights in the specified group matching the provided filter values.
SELECT
insight_summaries,
next_token
FROM aws.xray.insight_summaries
WHERE region = '{{ region }}' -- required
;