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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#countInteger

The prevalence of the entry.

Returns:

  • (Integer)


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

#valueFloat

The value of the entry.

Returns:

  • (Float)


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