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
28 29 30 |
# File 'lib/datadog/tracing/contrib/lograge/integration.rb', line 28 def self.compatible? super && version >= MINIMUM_VERSION end |
.loaded? ⇒ Boolean
24 25 26 |
# File 'lib/datadog/tracing/contrib/lograge/integration.rb', line 24 def self.loaded? !defined?(::Lograge::LogSubscribers::Base).nil? end |
.version ⇒ Object
20 21 22 |
# File 'lib/datadog/tracing/contrib/lograge/integration.rb', line 20 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
35 36 37 |
# File 'lib/datadog/tracing/contrib/lograge/integration.rb', line 35 def auto_instrument? false end |
#new_configuration ⇒ Object
39 40 41 |
# File 'lib/datadog/tracing/contrib/lograge/integration.rb', line 39 def new_configuration Configuration::Settings.new end |
#patcher ⇒ Object
43 44 45 |
# File 'lib/datadog/tracing/contrib/lograge/integration.rb', line 43 def patcher Patcher end |