Module: OpenTelemetry::SDK::Experimental::SamplersPatch
- Included in:
- Trace::Samplers
- Defined in:
- lib/opentelemetry/sdk/experimental/samplers_patch.rb
Overview
The SamplersPatch module contains additional samplers for OpenTelemetry.
Instance Method Summary collapse
-
#consistent_probability_based(ratio) ⇒ Object
Returns a new sampler.
-
#parent_consistent_probability_based(root:) ⇒ Object
Returns a new sampler.
Instance Method Details
#consistent_probability_based(ratio) ⇒ Object
Returns a new sampler.
25 26 27 28 29 |
# File 'lib/opentelemetry/sdk/experimental/samplers_patch.rb', line 25 def consistent_probability_based(ratio) raise ArgumentError, 'ratio must be in range [0.0, 1.0]' unless (0.0..1.0).include?(ratio) OpenTelemetry::SDK::Trace::Samplers::ConsistentProbabilityBased.new(ratio) end |
#parent_consistent_probability_based(root:) ⇒ Object
Returns a new sampler.
35 36 37 |
# File 'lib/opentelemetry/sdk/experimental/samplers_patch.rb', line 35 def parent_consistent_probability_based(root:) OpenTelemetry::SDK::Trace::Samplers::ParentConsistentProbabilityBased.new(root) end |