Skip to main content

recommendations

Creates, updates, deletes, gets or lists a recommendations resource.

Overview

Namerecommendations
TypeResource
Idaws.devops_guru.recommendations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
categorystringThe category type of the recommendation.
descriptionstringA description of the problem.
linkstringA hyperlink to information to help you address the problem.
namestringThe name of the recommendation.
reasonstringThe reason DevOps Guru flagged the anomalous behavior as a problem.
related_anomaliesarrayAnomalies that are related to the problem. Use these Anomalies to learn more about what's happening and to help address the issue.
related_eventsarrayEvents that are related to the problem. Use these events to learn more about what's happening and to help address the issue.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_recommendationsselectregionReturns a list of a specified insight's recommendations. Each recommendation includes a list of related metrics and a list of related events.

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 a list of a specified insight's recommendations. Each recommendation includes a list of related metrics and a list of related events.

SELECT
category,
description,
link,
name,
reason,
related_anomalies,
related_events
FROM aws.devops_guru.recommendations
WHERE region = '{{ region }}' -- required
;