Skip to main content

account_overviews

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

Overview

Nameaccount_overviews
TypeResource
Idaws.devops_guru.account_overviews

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
mean_time_to_recover_in_millisecondsinteger (int64)The Mean Time to Recover (MTTR) for all closed insights that were created during the time range passed in.
proactive_insightsintegerAn integer that specifies the number of open proactive insights in your Amazon Web Services account that were created during the time range passed in.
reactive_insightsintegerAn integer that specifies the number of open reactive insights in your Amazon Web Services account that were created during the time range passed in.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_account_overviewselectregionFor the time range passed in, returns the number of open reactive insight that were created, the number of open proactive insights that were created, and the Mean Time to Recover (MTTR) for all closed reactive insights.

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

For the time range passed in, returns the number of open reactive insight that were created, the number of open proactive insights that were created, and the Mean Time to Recover (MTTR) for all closed reactive insights.

SELECT
mean_time_to_recover_in_milliseconds,
proactive_insights,
reactive_insights
FROM aws.devops_guru.account_overviews
WHERE region = '{{ region }}' -- required
;