Skip to main content

account_healths

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

Overview

Nameaccount_healths
TypeResource
Idaws.devops_guru.account_healths

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
analyzed_resource_countinteger (int64)Number of resources that DevOps Guru is monitoring in your Amazon Web Services account.
metrics_analyzedintegerAn integer that specifies the number of metrics that have been analyzed in your Amazon Web Services account.
open_proactive_insightsintegerAn integer that specifies the number of open proactive insights in your Amazon Web Services account.
open_reactive_insightsintegerAn integer that specifies the number of open reactive insights in your Amazon Web Services account.
resource_hoursinteger (int64)The number of Amazon DevOps Guru resource analysis hours billed to the current Amazon Web Services account in the last hour.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_account_healthselectregionReturns the number of open reactive insights, the number of open proactive insights, and the number of metrics analyzed in your Amazon Web Services account. Use these numbers to gauge the health of operations in your Amazon Web Services account.

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 number of open reactive insights, the number of open proactive insights, and the number of metrics analyzed in your Amazon Web Services account. Use these numbers to gauge the health of operations in your Amazon Web Services account.

SELECT
analyzed_resource_count,
metrics_analyzed,
open_proactive_insights,
open_reactive_insights,
resource_hours
FROM aws.devops_guru.account_healths
WHERE region = '{{ region }}' -- required
;