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.
1593 1594 1595 1596 1597 1598 |
# File 'lib/aws-sdk-xray/types.rb', line 1593 class HistogramEntry < Struct.new( :value, :count) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Float
The value of the entry.
1593 1594 1595 1596 1597 1598 |
# File 'lib/aws-sdk-xray/types.rb', line 1593 class HistogramEntry < Struct.new( :value, :count) SENSITIVE = [] include Aws::Structure end |