Sha256: f82675fa27a14593d567bc079be69d932f2b3af33e9cbc1f5a340b77505985cf

Contents?: true

Size: 1.63 KB

Versions: 3

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 'newrelic_rpm' unless defined?( NewRelic )
require 'new_relic/agent' unless defined?( NewRelic::Agent )
require 'new_relic/agent/event_aggregator'
require 'new_relic/agent/priority_sampled_buffer'

module NewRelic
  module Agent
    class SpanEventAggregator < EventAggregator
      named :SpanEventAggregator
      capacity_key :'span_events.max_samples_stored'

      enabled_keys :'span_events.enabled',
                   :'distributed_tracing.enabled'

      def record(priority: nil, event: nil, &blk)
        unless(event || priority && blk)
          raise ArgumentError, "Expected priority and block, or event"
        end

        return unless enabled?

        @lock.synchronize do
          @buffer.append priority: priority, event: event, &blk
          notify_if_full
        end
      end

      SUPPORTABILITY_TOTAL_SEEN = "Supportability/SpanEvent/TotalEventsSeen".freeze
      SUPPORTABILITY_TOTAL_SENT = "Supportability/SpanEvent/TotalEventsSent".freeze
      SUPPORTABILITY_DISCARDED  = "Supportability/SpanEvent/Discarded".freeze

      def after_harvest(metadata)
        seen      = metadata[:seen]
        sent      = metadata[:captured]
        discarded = seen - sent

        ::NewRelic::Agent.record_metric(SUPPORTABILITY_TOTAL_SEEN, count: seen)
        ::NewRelic::Agent.record_metric(SUPPORTABILITY_TOTAL_SENT, count: sent)
        ::NewRelic::Agent.record_metric(SUPPORTABILITY_DISCARDED,  count: discarded)

        super
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
newrelic_rpm-8.2.0 lib/new_relic/agent/span_event_aggregator.rb
newrelic_rpm-8.1.0 lib/new_relic/agent/span_event_aggregator.rb
newrelic_rpm-8.0.0 lib/new_relic/agent/span_event_aggregator.rb