Class: Datadog::Tracing::Sampling::Matcher Abstract
- Inherits:
-
Object
- Object
- Datadog::Tracing::Sampling::Matcher
- Defined in:
- lib/datadog/tracing/sampling/matcher.rb
Overview
This class is abstract.
Checks if a trace conforms to a matching criteria.
Direct Known Subclasses
Instance Method Summary collapse
-
#match?(trace) ⇒ Boolean
Returns ‘true` if the trace should conforms to this rule, `false` otherwise.
Instance Method Details
#match?(trace) ⇒ Boolean
Returns ‘true` if the trace should conforms to this rule, `false` otherwise
14 15 16 |
# File 'lib/datadog/tracing/sampling/matcher.rb', line 14 def match?(trace) raise NotImplementedError end |