Class: Aws::XRay::Types::HistogramEntry

Inherits:
Struct
  • Object
show all
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.

Instance Attribute Summary collapse

Instance Attribute Details

#countInteger

The prevalence of the entry.

Returns:

  • (Integer)


1074
1075
1076
1077
1078
# File 'lib/aws-sdk-xray/types.rb', line 1074

class HistogramEntry < Struct.new(
  :value,
  :count)
  include Aws::Structure
end

#valueFloat

The value of the entry.

Returns:

  • (Float)


1074
1075
1076
1077
1078
# File 'lib/aws-sdk-xray/types.rb', line 1074

class HistogramEntry < Struct.new(
  :value,
  :count)
  include Aws::Structure
end