# File lib/new_relic/agent/event_aggregator.rb, line 74
      def merge! payload, adjust_count = true
        @lock.synchronize do
          _, samples = payload

          if adjust_count
            @buffer.decrement_lifetime_counts_by samples.count
          end

          samples.each { |s| @buffer.append s }
        end
      end