Module: OpenTelemetry::Trace::SamplingHint

Defined in:
lib/opentelemetry/trace/sampling_hint.rb

Overview

Hints to influence sampling decisions. The default option for span creation is to not provide any suggestion.

Constant Summary collapse

NOT_RECORD =

Suggest to not record events and not sample.

:__not_record__
RECORD =

Suggest to record events and not sample.

:__record__
RECORD_AND_SAMPLED =

Suggest to record events and sample.

:__record_and_sampled__