class HTTP::Features::Instrumentation::NullInstrumenter
Public Instance Methods
Source
# File lib/http/features/instrumentation.rb, line 63 def finish(_name, _payload) true end
Source
# File lib/http/features/instrumentation.rb, line 50 def instrument(name, payload = {}) start(name, payload) begin yield payload if block_given? ensure finish name, payload end end
Source
# File lib/http/features/instrumentation.rb, line 59 def start(_name, _payload) true end