interface BurnRateConfigurationProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.aws_applicationsignals.CfnServiceLevelObjective.BurnRateConfigurationProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsapplicationsignals#CfnServiceLevelObjective_BurnRateConfigurationProperty |
![]() | software.amazon.awscdk.services.applicationsignals.CfnServiceLevelObjective.BurnRateConfigurationProperty |
![]() | aws_cdk.aws_applicationsignals.CfnServiceLevelObjective.BurnRateConfigurationProperty |
![]() | aws-cdk-lib » aws_applicationsignals » CfnServiceLevelObjective » BurnRateConfigurationProperty |
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 / (100% - attainment goal percentage)
For more information about burn rates, see Calculate burn rates .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_applicationsignals as applicationsignals } from 'aws-cdk-lib';
const burnRateConfigurationProperty: applicationsignals.CfnServiceLevelObjective.BurnRateConfigurationProperty = {
lookBackWindowMinutes: 123,
};
Properties
Name | Type | Description |
---|---|---|
look | number | The number of minutes to use as the look-back window. |
lookBackWindowMinutes
Type:
number
The number of minutes to use as the look-back window.