35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# File 'lib/new_relic/agent/instrumentation/rdkafka/instrumentation.rb', line 35
def each_with_new_relic(message)
NewRelic::Agent.record_instrumentation_invocation(INSTRUMENTATION_NAME)
= message&. || {}
topic_name = message&.topic
NewRelic::Agent::Messaging.wrap_message_broker_consume_transaction(
library: MESSAGING_LIBRARY,
destination_type: :topic,
destination_name: topic_name,
headers: ,
action: :consume
) do
create_kafka_metrics(action: CONSUME, topic: topic_name)
yield
end
end
|