account_healths
Creates, updates, deletes, gets or lists an account_healths resource.
Overview
| Name | account_healths |
| Type | Resource |
| Id | aws.devops_guru.account_healths |
Fields
The following fields are returned by SELECT queries:
- describe_account_health
| Name | Datatype | Description |
|---|---|---|
analyzed_resource_count | integer (int64) | Number of resources that DevOps Guru is monitoring in your Amazon Web Services account. |
metrics_analyzed | integer | An integer that specifies the number of metrics that have been analyzed in your Amazon Web Services account. |
open_proactive_insights | integer | An integer that specifies the number of open proactive insights in your Amazon Web Services account. |
open_reactive_insights | integer | An integer that specifies the number of open reactive insights in your Amazon Web Services account. |
resource_hours | integer (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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_account_health | select | region | 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. |
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
- describe_account_health
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
;