Skip to main content

organization_healths

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

Overview

Nameorganization_healths
TypeResource
Idaws.devops_guru.organization_healths

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
metrics_analyzedintegerAn integer that specifies the number of metrics that have been analyzed in your organization.
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_organization_healthselectregionReturns active insights, predictive insights, and resource hours analyzed in last hour.

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 active insights, predictive insights, and resource hours analyzed in last hour.

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