module OpenTelemetry::Instrumentation::Que::Patches::Poller
Instrumentation
for the Que::Poller module
Public Instance Methods
poll(*args, **kwargs)
click to toggle source
Calls superclass method
# File lib/opentelemetry/instrumentation/que/patches/poller.rb, line 13 def poll(*args, **kwargs) # Avoid tracing when should_poll? returns true. This is also used # in Poller#poll to decide if the actual poll should be executed or # not. Without this we would generate a lot of unnecessary spans. return unless should_poll? if Que::Instrumentation.instance.config[:trace_poller] Que::Instrumentation.instance.tracer.in_span('Que::Poller#poll') { super(*args, **kwargs) } else OpenTelemetry::Common::Utilities.untraced { super(*args, **kwargs) } end end