Sha256: 210641a098f94a44880a516e25cc27fff3504382dd2bb1a0af5deb5ccbc0f0dd

Contents?: true

Size: 1.06 KB

Versions: 3

Compression:

Stored size: 1.06 KB

Contents

# encoding: utf-8
# This file is distributed under New Relic's license terms.
# See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.

require 'new_relic/agent/inbound_request_monitor'
require 'new_relic/agent/cross_app_tracing'

module NewRelic
  module Agent
    class DistributedTraceMonitor < InboundRequestMonitor
      NEWRELIC_TRACE_KEY  = 'HTTP_X_NEWRELIC_TRACE'.freeze
      HTTP_TRANSPORT_TYPE = 'HTTP'.freeze

      def on_finished_configuring(events)
        return unless NewRelic::Agent.config[:'distributed_tracing.enabled']
        events.subscribe(:before_call, &method(:on_before_call))
      end

      def on_before_call(request)
        return unless NewRelic::Agent.config[:'distributed_tracing.enabled']
        return unless payload = request[NEWRELIC_TRACE_KEY]

        state = NewRelic::Agent::TransactionState.tl_get
        txn = state.current_transaction
        if txn.accept_distributed_trace_payload payload
          txn.distributed_trace_payload.caller_transport_type = HTTP_TRANSPORT_TYPE
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
newrelic_rpm-5.2.0.345 lib/new_relic/agent/distributed_trace_monitor.rb
newrelic_rpm-5.1.0.344 lib/new_relic/agent/distributed_trace_monitor.rb
newrelic_rpm-5.0.0.342 lib/new_relic/agent/distributed_trace_monitor.rb