class SignalFx::Tracing::Instrumenter::Register

Public Class Methods

add_lib(patch_key, patch_module) click to toggle source
# File lib/signalfx/tracing/register.rb, line 24
def self.add_lib(patch_key, patch_module)
  @available_libs[patch_key] = patch_module
end
available_libs() click to toggle source
# File lib/signalfx/tracing/register.rb, line 9
def self.available_libs
    return @available_libs
end
include_patches() click to toggle source
# File lib/signalfx/tracing/register.rb, line 17
def self.include_patches
    # all of the available patches must be added to the table here
    @available_libs[:PatchingTest] = Patches::PatchingTest::ToPatch.new

    @initialized = true
end
initialized?() click to toggle source
# File lib/signalfx/tracing/register.rb, line 13
def self.initialized?
    return @initialized
end