Skip to main content

service_level_objective_budget_reports

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

Overview

Nameservice_level_objective_budget_reports
TypeResource
Idaws.application_signals.service_level_objective_budget_reports

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
errorsarrayAn array of structures, where each structure includes an error indicating that one of the requests in the array was not valid.
reportsarrayAn array of structures, where each structure is one budget report.
timestampstring (date-time)The date and time that the report is for. It is expressed as the number of milliseconds since Jan 1, 1970 00:00:00 UTC.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
batch_get_service_level_objective_budget_reportselectregionUse this operation to retrieve one or more service level objective (SLO) budget reports. An error budget is the amount of time or requests in an unhealthy state that your service can accumulate during an interval before your overall SLO budget health is breached and the SLO is considered to be unmet. For example, an SLO with a threshold of 99.95% and a monthly interval translates to an error budget of 21.9 minutes of downtime in a 30-day month. Budget reports include a health indicator, the attainment value, and remaining budget. For more information about SLO error budgets, see SLO concepts.

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

Use this operation to retrieve one or more service level objective (SLO) budget reports. An error budget is the amount of time or requests in an unhealthy state that your service can accumulate during an interval before your overall SLO budget health is breached and the SLO is considered to be unmet. For example, an SLO with a threshold of 99.95% and a monthly interval translates to an error budget of 21.9 minutes of downtime in a 30-day month. Budget reports include a health indicator, the attainment value, and remaining budget. For more information about SLO error budgets, see SLO concepts.

SELECT
errors,
reports,
timestamp
FROM aws.application_signals.service_level_objective_budget_reports
WHERE region = '{{ region }}' -- required
;