Sha256: c96810cab59808cea4bec2077c1fa3a5a19516b196fb4339583140d17a417112
Contents?: true
Size: 679 Bytes
Versions: 34
Compression:
Stored size: 679 Bytes
Contents
# This file is distributed under New Relic's license terms. # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details. # frozen_string_literal: true require_relative 'instrumentation' module NewRelic module Agent module Instrumentation module GRPC module Server module RpcServerPrepend include NewRelic::Agent::Instrumentation::GRPC::Server def add_http2_port(*args) add_http2_port_with_tracing(*args) { super } end def run(*args) run_with_tracing(*args) { super } end end end end end end end
Version data entries
34 entries across 34 versions & 1 rubygems