Skip to main content

anomalous_log_groups

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

Overview

Nameanomalous_log_groups
TypeResource
Idaws.devops_guru.anomalous_log_groups

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
anomalous_log_groupsarrayThe list of Amazon CloudWatch log groups that are related to an insight.
insight_idstringThe ID of the insight containing the log groups. (pattern: <code>^[\w-]*$</code>)
next_tokenstringThe pagination token to use to retrieve the next page of results for this operation. If there are no more pages, this value is null. (pattern: <code>^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_anomalous_log_groupsselectregionReturns the list of log groups that contain log anomalies.

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 list of log groups that contain log anomalies.

SELECT
anomalous_log_groups,
insight_id,
next_token
FROM aws.devops_guru.anomalous_log_groups
WHERE region = '{{ region }}' -- required
;