class Datadog::Tracing::Contrib::Lograge::Integration

Description of Lograge integration

def self.compatible?

def self.compatible?
  super && version >= MINIMUM_VERSION
end

def self.loaded?

def self.loaded?
  !defined?(::Lograge::LogSubscribers::Base).nil?
end

def self.version

def self.version
  Gem.loaded_specs['lograge'] && Gem.loaded_specs['lograge'].version
end

def auto_instrument?

https://github.com/roidrage/lograge/blob/1729eab7956bb95c5992e4adab251e4f93ff9280/lograge.gemspec#L18-L20
so can safely say this shouldn't ever be part of auto instrumentation
enabled by rails integration and has a hard dependancy on rails
def auto_instrument?
  false
end

def new_configuration

def new_configuration
  Configuration::Settings.new
end

def patcher

def patcher
  Patcher
end