Class: Datadog::Tracing::Contrib::Lograge::Integration
- Inherits:
-
Object
- Object
- Datadog::Tracing::Contrib::Lograge::Integration
- Includes:
- Integration
- Defined in:
- lib/datadog/tracing/contrib/lograge/integration.rb
Overview
Description of Lograge integration
Constant Summary collapse
- MINIMUM_VERSION =
Gem::Version.new('0.11.0')
Class Method Summary collapse
Instance Method Summary collapse
-
#auto_instrument? ⇒ Boolean
enabled by rails integration and has a hard dependancy on rails so can safely say this shouldn’t ever be part of auto instrumentation github.com/roidrage/lograge/blob/1729eab7956bb95c5992e4adab251e4f93ff9280/lograge.gemspec#L18-L20.
- #new_configuration ⇒ Object
- #patcher ⇒ Object
Methods included from Integration
Class Method Details
.compatible? ⇒ Boolean
26 27 28 |
# File 'lib/datadog/tracing/contrib/lograge/integration.rb', line 26 def self.compatible? super && version >= MINIMUM_VERSION end |
.loaded? ⇒ Boolean
22 23 24 |
# File 'lib/datadog/tracing/contrib/lograge/integration.rb', line 22 def self.loaded? !defined?(::Lograge::LogSubscribers::Base).nil? end |
.version ⇒ Object
18 19 20 |
# File 'lib/datadog/tracing/contrib/lograge/integration.rb', line 18 def self.version Gem.loaded_specs['lograge'] && Gem.loaded_specs['lograge'].version end |
Instance Method Details
#auto_instrument? ⇒ Boolean
enabled by rails integration and has a hard dependancy on rails so can safely say this shouldn’t ever be part of auto instrumentation github.com/roidrage/lograge/blob/1729eab7956bb95c5992e4adab251e4f93ff9280/lograge.gemspec#L18-L20
33 34 35 |
# File 'lib/datadog/tracing/contrib/lograge/integration.rb', line 33 def auto_instrument? false end |
#new_configuration ⇒ Object
37 38 39 |
# File 'lib/datadog/tracing/contrib/lograge/integration.rb', line 37 def new_configuration Configuration::Settings.new end |
#patcher ⇒ Object
41 42 43 |
# File 'lib/datadog/tracing/contrib/lograge/integration.rb', line 41 def patcher Patcher end |