Sha256: a43273ae110757aa51b81c1d648b501472ef64cdc2674ddddc9cfa9705b214b5
Contents?: true
Size: 586 Bytes
Versions: 40
Compression:
Stored size: 586 Bytes
Contents
# frozen_string_literal: true require_relative '../patcher' require_relative 'instrumentation' module Datadog module Tracing module Contrib module Pg # Patcher enables patching of 'pg' module. module Patcher include Contrib::Patcher module_function def target_version Integration.version end def patch patch_pg_connection end def patch_pg_connection ::PG::Connection.include(Instrumentation) end end end end end end
Version data entries
40 entries across 40 versions & 2 rubygems