Class: Aws::CloudWatch::Types::MetricCharacteristics
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatch::Types::MetricCharacteristics
- Defined in:
- gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/types.rb
Overview
This object includes parameters that you can use to provide information to CloudWatch to help it build more accurate anomaly detection models.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#periodic_spikes ⇒ Boolean
Set this parameter to
trueif values for this metric consistently include spikes that should not be considered to be anomalies.
Instance Attribute Details
#periodic_spikes ⇒ Boolean
Set this parameter to true if values for this metric consistently
include spikes that should not be considered to be anomalies. With
this set to true, CloudWatch will expect to see spikes that
occurred consistently during the model training period, and won't
flag future similar spikes as anomalies.
2790 2791 2792 2793 2794 |
# File 'gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/types.rb', line 2790 class MetricCharacteristics < Struct.new( :periodic_spikes) SENSITIVE = [] include Aws::Structure end |