Class: Datadog::Tracing::Contrib::SemanticLogger::Integration
- Inherits:
-
Object
- Object
- Datadog::Tracing::Contrib::SemanticLogger::Integration
- Includes:
- Integration
- Defined in:
- lib/datadog/tracing/contrib/semantic_logger/integration.rb
Overview
Description of SemanticLogger integration
Constant Summary collapse
- MINIMUM_VERSION =
v4 had a migration to ‘named_tags` instead of `payload` and has been out for almost 5 years at this point it’s probably reasonable to nudge users to using modern ruby libs
Gem::Version.new('4.0.0')
Class Method Summary collapse
Instance Method Summary collapse
-
#auto_instrument? ⇒ Boolean
TODO: abstract out the log injection related instrumentation into it’s own module so we dont keep having to do these workarounds.
- #new_configuration ⇒ Object
- #patcher ⇒ Object
Methods included from Integration
Class Method Details
.compatible? ⇒ Boolean
31 32 33 |
# File 'lib/datadog/tracing/contrib/semantic_logger/integration.rb', line 31 def self.compatible? super && version >= MINIMUM_VERSION end |
.loaded? ⇒ Boolean
27 28 29 |
# File 'lib/datadog/tracing/contrib/semantic_logger/integration.rb', line 27 def self.loaded? !defined?(::SemanticLogger::Logger).nil? end |
.version ⇒ Object
23 24 25 |
# File 'lib/datadog/tracing/contrib/semantic_logger/integration.rb', line 23 def self.version Gem.loaded_specs['semantic_logger'] && Gem.loaded_specs['semantic_logger'].version end |
Instance Method Details
#auto_instrument? ⇒ Boolean
TODO: abstract out the log injection related instrumentation into it’s own module so we dont keep having to do these workarounds
37 38 39 |
# File 'lib/datadog/tracing/contrib/semantic_logger/integration.rb', line 37 def auto_instrument? false end |
#new_configuration ⇒ Object
41 42 43 |
# File 'lib/datadog/tracing/contrib/semantic_logger/integration.rb', line 41 def new_configuration Configuration::Settings.new end |
#patcher ⇒ Object
45 46 47 |
# File 'lib/datadog/tracing/contrib/semantic_logger/integration.rb', line 45 def patcher Patcher end |