Sha256: cc4bbf61dd37cb75fa42f7879db5c72cf008951f345d8b30dbed0a79c2e30716
Contents?: true
Size: 673 Bytes
Versions: 32
Compression:
Stored size: 673 Bytes
Contents
# frozen_string_literal: true require_relative 'endpoint' require_relative 'ext' require_relative 'instrumentation' require_relative '../patcher' module Datadog module Tracing module Contrib module Grape # Patcher enables patching of 'grape' module. module Patcher include Contrib::Patcher module_function def target_version Integration.version end def patch # Patch endpoints ::Grape::Endpoint.include(Instrumentation) # Subscribe to ActiveSupport events Endpoint.subscribe end end end end end end
Version data entries
32 entries across 32 versions & 2 rubygems