Sha256: 17a5b6e7e75d350ae27fed70527e19b48403fae7356b113b66b29bdbc4b506e4

Contents?: true

Size: 1.63 KB

Versions: 13

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[:'analytics_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

13 entries across 13 versions & 1 rubygems

Version Path
newrelic_rpm-8.4.0 lib/new_relic/agent/transaction_event_recorder.rb
newrelic_rpm-8.3.0 lib/new_relic/agent/transaction_event_recorder.rb
newrelic_rpm-8.2.0 lib/new_relic/agent/transaction_event_recorder.rb
newrelic_rpm-8.1.0 lib/new_relic/agent/transaction_event_recorder.rb
newrelic_rpm-8.0.0 lib/new_relic/agent/transaction_event_recorder.rb
newrelic_rpm-7.2.0 lib/new_relic/agent/transaction_event_recorder.rb
newrelic_rpm-7.1.0 lib/new_relic/agent/transaction_event_recorder.rb
newrelic_rpm-7.0.0 lib/new_relic/agent/transaction_event_recorder.rb
newrelic_rpm-6.15.0 lib/new_relic/agent/transaction_event_recorder.rb
newrelic_rpm-6.14.0 lib/new_relic/agent/transaction_event_recorder.rb
newrelic_rpm-6.13.1 lib/new_relic/agent/transaction_event_recorder.rb
newrelic_rpm-6.13.0 lib/new_relic/agent/transaction_event_recorder.rb
newrelic_rpm-6.12.0.367 lib/new_relic/agent/transaction_event_recorder.rb