module Datadog::Contrib::Grape::Instrumentation

Instrumentation for Grape::Endpoint

Public Class Methods

included(base) click to toggle source
# File lib/ddtrace/contrib/grape/instrumentation.rb, line 6
def self.included(base)
  base.singleton_class.send(:prepend, ClassMethods)
  base.send(:prepend, InstanceMethods)
end