module NewRelic::Agent::Instrumentation::RubyKafkaClient::Prepend
Public Instance Methods
consumer(**kwargs)
click to toggle source
Calls superclass method
# File lib/new_relic/agent/instrumentation/ruby_kafka/prepend.rb, line 53 def consumer(**kwargs) super.tap do |consumer| set_nr_config(consumer) end end
producer(**kwargs)
click to toggle source
Calls superclass method
# File lib/new_relic/agent/instrumentation/ruby_kafka/prepend.rb, line 47 def producer(**kwargs) super.tap do |producer| set_nr_config(producer) end end