Class: Aws::ApplicationSignals::Types::BurnRateConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-applicationsignals/types.rb

Overview

This object defines the length of the look-back window used to calculate one burn rate metric for this SLO. The burn rate measures how fast the service is consuming the error budget, relative to the attainment goal of the SLO. A burn rate of exactly 1 indicates that the SLO goal will be met exactly.

For example, if you specify 60 as the number of minutes in the look-back window, the burn rate is calculated as the following:

*burn rate = error rate over the look-back window / (1 - attainment goal percentage)*

For more information about burn rates, see [Calculate burn rates].

[1]: docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-ServiceLevelObjectives.html#CloudWatch-ServiceLevelObjectives-burn

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#look_back_window_minutesInteger

The number of minutes to use as the look-back window.

Returns:

  • (Integer)


94
95
96
97
98
# File 'lib/aws-sdk-applicationsignals/types.rb', line 94

class BurnRateConfiguration < Struct.new(
  :look_back_window_minutes)
  SENSITIVE = []
  include Aws::Structure
end