Sha256: 97dc23ce31c95fdce472398b01e47871ff87288bf407ae76581e1932cef872d8
Contents?: true
Size: 841 Bytes
Versions: 24
Compression:
Stored size: 841 Bytes
Contents
require_relative '../../../core/utils/only_once' require_relative '../patcher' require_relative 'ext' require_relative 'instrumentation' module Datadog module Tracing module Contrib module Presto # Patcher enables patching of 'presto-client' module. module Patcher include Contrib::Patcher PATCH_ONLY_ONCE = Core::Utils::OnlyOnce.new module_function def patched? PATCH_ONLY_ONCE.ran? end def patch PATCH_ONLY_ONCE.run do begin ::Presto::Client::Client.include(Instrumentation::Client) rescue StandardError => e Datadog.logger.error("Unable to apply Presto integration: #{e}") end end end end end end end end
Version data entries
24 entries across 24 versions & 1 rubygems