Class: Aws::XRay::Types::HistogramEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::XRay::Types::HistogramEntry
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-xray/types.rb
Overview
An entry in a histogram for a statistic. A histogram maps the range of observed values on the X axis, and the prevalence of each value on the Y axis.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#count ⇒ Integer
The prevalence of the entry.
-
#value ⇒ Float
The value of the entry.
Instance Attribute Details
#count ⇒ Integer
The prevalence of the entry.
1458 1459 1460 1461 1462 1463 |
# File 'lib/aws-sdk-xray/types.rb', line 1458 class HistogramEntry < Struct.new( :value, :count) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Float
The value of the entry.
1458 1459 1460 1461 1462 1463 |
# File 'lib/aws-sdk-xray/types.rb', line 1458 class HistogramEntry < Struct.new( :value, :count) SENSITIVE = [] include Aws::Structure end |