Module: OpenTelemetry::SDK::Trace::Samplers::Decision

Defined in:
lib/opentelemetry/sdk/trace/samplers/decision.rb

Overview

The Decision module contains a set of constants to be used in the decision part of a sampling Result.

Constant Summary collapse

DROP =

Decision to not record events and not sample.

:__drop__
RECORD_ONLY =

Decision to record events and not sample.

:__record_only__
RECORD_AND_SAMPLE =

Decision to record events and sample.

:__record_and_sample__