Sha256: b31188863a0b3f0d1b293d287a6d7dfb0539a2bbb6cce31d4103a8724bb8b6d4

Contents?: true

Size: 1.63 KB

Versions: 5

Compression:

Stored size: 1.63 KB

Contents

# encoding: utf-8
# This file is distributed under New Relic's license terms.
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
require 'new_relic/agent/transaction_event_aggregator'
require 'new_relic/agent/synthetics_event_aggregator'
require 'new_relic/agent/transaction_event_primitive'

module NewRelic
  module Agent
    # This is responsibile for recording transaction events and managing
    # the relationship between events generated from synthetics requests
    # vs normal requests.
    class TransactionEventRecorder
      attr_reader :transaction_event_aggregator
      attr_reader :synthetics_event_aggregator

      def initialize events
        @transaction_event_aggregator = NewRelic::Agent::TransactionEventAggregator.new events
        @synthetics_event_aggregator = NewRelic::Agent::SyntheticsEventAggregator.new events
      end

      def record payload
        return unless NewRelic::Agent.config[:'transaction_events.enabled']

        if synthetics_event? payload
          event = create_event payload
          result = synthetics_event_aggregator.record event
          transaction_event_aggregator.record event: event if result.nil?
        else
          transaction_event_aggregator.record(priority: payload[:priority]) { create_event(payload) }
        end
      end

      def create_event payload
        TransactionEventPrimitive.create payload
      end

      def synthetics_event? payload
        payload.key? :synthetics_resource_id
      end

      def drop_buffered_data
        transaction_event_aggregator.reset!
        synthetics_event_aggregator.reset!
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
newrelic_rpm-8.9.0 lib/new_relic/agent/transaction_event_recorder.rb
newrelic_rpm-8.8.0 lib/new_relic/agent/transaction_event_recorder.rb
newrelic_rpm-8.7.0 lib/new_relic/agent/transaction_event_recorder.rb
newrelic_rpm-8.6.0 lib/new_relic/agent/transaction_event_recorder.rb
newrelic_rpm-8.5.0 lib/new_relic/agent/transaction_event_recorder.rb