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