Class: Aws::XRay::Types::ProbabilisticRuleValue

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-xray/types.rb

Overview

The indexing rule configuration for probabilistic sampling.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#actual_sampling_percentageFloat

Applied sampling percentage of traceIds.

Returns:

  • (Float)


2222
2223
2224
2225
2226
2227
# File 'lib/aws-sdk-xray/types.rb', line 2222

class ProbabilisticRuleValue < Struct.new(
  :desired_sampling_percentage,
  :actual_sampling_percentage)
  SENSITIVE = []
  include Aws::Structure
end

#desired_sampling_percentageFloat

Configured sampling percentage of traceIds. Note that sampling can be subject to limits to ensure completeness of data.

Returns:

  • (Float)


2222
2223
2224
2225
2226
2227
# File 'lib/aws-sdk-xray/types.rb', line 2222

class ProbabilisticRuleValue < Struct.new(
  :desired_sampling_percentage,
  :actual_sampling_percentage)
  SENSITIVE = []
  include Aws::Structure
end