Class: Datadog::Contrib::Lograge::Integration
- Inherits:
-
Object
- Object
- Datadog::Contrib::Lograge::Integration
- Includes:
- Integration
- Defined in:
- lib/ddtrace/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 https://github.com/roidrage/lograge/blob/1729eab7956bb95c5992e4adab251e4f93ff9280/lograge.gemspec#L18-L20.
- #default_configuration ⇒ Object
- #patcher ⇒ Object
Methods included from Integration
Class Method Details
.compatible? ⇒ Boolean
25 26 27 |
# File 'lib/ddtrace/contrib/lograge/integration.rb', line 25 def self.compatible? super && version >= MINIMUM_VERSION end |
.loaded? ⇒ Boolean
21 22 23 |
# File 'lib/ddtrace/contrib/lograge/integration.rb', line 21 def self.loaded? !defined?(::Lograge::LogSubscribers::Base).nil? end |
.version ⇒ Object
17 18 19 |
# File 'lib/ddtrace/contrib/lograge/integration.rb', line 17 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 https://github.com/roidrage/lograge/blob/1729eab7956bb95c5992e4adab251e4f93ff9280/lograge.gemspec#L18-L20
32 33 34 |
# File 'lib/ddtrace/contrib/lograge/integration.rb', line 32 def auto_instrument? false end |
#default_configuration ⇒ Object
36 37 38 |
# File 'lib/ddtrace/contrib/lograge/integration.rb', line 36 def default_configuration Configuration::Settings.new end |
#patcher ⇒ Object
40 41 42 |
# File 'lib/ddtrace/contrib/lograge/integration.rb', line 40 def patcher Patcher end |