Class: Aws::XRay::Types::ProbabilisticRuleValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::XRay::Types::ProbabilisticRuleValue
- 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
-
#actual_sampling_percentage ⇒ Float
Applied sampling percentage of traceIds.
-
#desired_sampling_percentage ⇒ Float
Configured sampling percentage of traceIds.
Instance Attribute Details
#actual_sampling_percentage ⇒ Float
Applied sampling percentage of traceIds.
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_percentage ⇒ Float
Configured sampling percentage of traceIds. Note that sampling can be subject to limits to ensure completeness of data.
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 |