Sha256: daaacf52939729f9a3b986ebcd94a29dd7022788c0f8661213fb0711da1d979b
Contents?: true
Size: 1.49 KB
Versions: 4
Compression:
Stored size: 1.49 KB
Contents
# typed: false require 'datadog/tracing/contrib/integration' require 'datadog/tracing/contrib/semantic_logger/configuration/settings' require 'datadog/tracing/contrib/semantic_logger/patcher' module Datadog module Tracing module Contrib module SemanticLogger # Description of SemanticLogger integration class Integration include Contrib::Integration # 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 MINIMUM_VERSION = Gem::Version.new('4.0.0') # @public_api Changing the integration name or integration options can cause breaking changes register_as :semantic_logger def self.version Gem.loaded_specs['semantic_logger'] && Gem.loaded_specs['semantic_logger'].version end def self.loaded? !defined?(::SemanticLogger::Logger).nil? end def self.compatible? super && version >= MINIMUM_VERSION end # TODO: abstract out the log injection related instrumentation into it's own module so we dont # keep having to do these workarounds def auto_instrument? false end def new_configuration Configuration::Settings.new end def patcher Patcher end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems