Sha256: ee0564c2fffbda6367035af4d2ceac3c3a19c41dbcb82a2b0072a1dd31a8bee0
Contents?: true
Size: 804 Bytes
Versions: 35
Compression:
Stored size: 804 Bytes
Contents
# frozen_string_literal: true module Datadog module Tracing module Sampling module Span # Single Span Sampling constants. module Ext # Accept all spans (100% retention). DEFAULT_SAMPLE_RATE = 1.0 # Unlimited. # @see Datadog::Tracing::Sampling::TokenBucket DEFAULT_MAX_PER_SECOND = -1 # Sampling decision method used to come to the sampling decision for this span TAG_MECHANISM = '_dd.span_sampling.mechanism' # Sampling rate applied to this span, if a rule applies TAG_RULE_RATE = '_dd.span_sampling.rule_rate' # Rate limit configured for this span, if a rule applies TAG_MAX_PER_SECOND = '_dd.span_sampling.max_per_second' end end end end end
Version data entries
35 entries across 35 versions & 2 rubygems