Class: Aws::CodeGuruProfiler::Types::Anomaly
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeGuruProfiler::Types::Anomaly
- Defined in:
- gems/aws-sdk-codeguruprofiler/lib/aws-sdk-codeguruprofiler/types.rb
Overview
Details about an anomaly in a specific metric of application profile. The anomaly is detected using analysis of the metric data over a period of time.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#instances ⇒ Array<Types::AnomalyInstance>
A list of the instances of the detected anomalies during the requested period.
-
#metric ⇒ Types::Metric
Details about the metric that the analysis used when it detected the anomaly.
-
#reason ⇒ String
The reason for which metric was flagged as anomalous.
Instance Attribute Details
#instances ⇒ Array<Types::AnomalyInstance>
A list of the instances of the detected anomalies during the requested period.
183 184 185 186 187 188 189 |
# File 'gems/aws-sdk-codeguruprofiler/lib/aws-sdk-codeguruprofiler/types.rb', line 183 class Anomaly < Struct.new( :instances, :metric, :reason) SENSITIVE = [] include Aws::Structure end |
#metric ⇒ Types::Metric
Details about the metric that the analysis used when it detected the anomaly. The metric includes the name of the frame that was analyzed with the type and thread states used to derive the metric value for that frame.
183 184 185 186 187 188 189 |
# File 'gems/aws-sdk-codeguruprofiler/lib/aws-sdk-codeguruprofiler/types.rb', line 183 class Anomaly < Struct.new( :instances, :metric, :reason) SENSITIVE = [] include Aws::Structure end |