module OpenTracing

© Copyright IBM Corp. 2021 © Copyright Instana Inc. 2017

:nocov:

Constants

FORMAT_BINARY

Binary format for inject and extract

FORMAT_RACK

Ruby Specific format to handle how Rack changes environment variables.

FORMAT_TEXT_MAP

Text format for inject and extract

Attributes

global_tracer[RW]

Public Class Methods

method_missing(method_name, *args, &block) click to toggle source
# File lib/opentracing.rb, line 20
def method_missing(method_name, *args, &block)
  @global_tracer.send(method_name, *args, &block)
end
respond_to_missing?(name, all) click to toggle source
# File lib/opentracing.rb, line 24
def respond_to_missing?(name, all)
  @global_tracer.respond_to?(name, all)
end