anomalous_log_groups
Creates, updates, deletes, gets or lists an anomalous_log_groups resource.
Overview
| Name | anomalous_log_groups |
| Type | Resource |
| Id | aws.devops_guru.anomalous_log_groups |
Fields
The following fields are returned by SELECT queries:
- list_anomalous_log_groups
| Name | Datatype | Description |
|---|---|---|
anomalous_log_groups | array | The list of Amazon CloudWatch log groups that are related to an insight. |
insight_id | string | The ID of the insight containing the log groups. (pattern: <code>^[\w-]*$</code>) |
next_token | string | The 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_anomalous_log_groups | select | region | Returns 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_anomalous_log_groups
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
;