Skip to main content

insight_summaries

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

Overview

Nameinsight_summaries
TypeResource
Idaws.xray.insight_summaries

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
insight_summariesarrayThe 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_tokenstringPagination token.

Methods

The following methods are available for this resource:

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

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

SELECT examples

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
;