Sha256: 8d1ae1278944102911d9d6369ac61232ee347c793aa7b00b2a33c50f887966fd

Contents?: true

Size: 883 Bytes

Versions: 36

Compression:

Stored size: 883 Bytes

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/transaction_sample'
require 'new_relic/transaction_sample/segment'
require 'new_relic/transaction_sample/summary_segment'
module NewRelic
  class TransactionSample
    class CompositeSegment < Segment
      attr_reader :detail_segments

      def initialize(segments)
        summary = SummarySegment.new(segments.first)
        super summary.entry_timestamp, "Repeating pattern (#{segments.length} repeats)", nil

        summary.end_trace(segments.last.exit_timestamp)

        @detail_segments = segments.clone

        add_called_segment(summary)
        end_trace summary.exit_timestamp
      end

      def detail_segments=(segments)
        @detail_segments = segments
      end

    end
  end
end

Version data entries

36 entries across 36 versions & 1 rubygems

Version Path
newrelic_rpm-3.8.1.221 lib/new_relic/transaction_sample/composite_segment.rb
newrelic_rpm-3.8.0.218 lib/new_relic/transaction_sample/composite_segment.rb
newrelic_rpm-3.7.3.204 lib/new_relic/transaction_sample/composite_segment.rb
newrelic_rpm-3.7.3.199 lib/new_relic/transaction_sample/composite_segment.rb
newrelic_rpm-3.7.2.195 lib/new_relic/transaction_sample/composite_segment.rb
newrelic_rpm-3.7.2.192 lib/new_relic/transaction_sample/composite_segment.rb
newrelic_rpm-3.7.2.190.beta lib/new_relic/transaction_sample/composite_segment.rb
newrelic_rpm-3.7.1.188 lib/new_relic/transaction_sample/composite_segment.rb
newrelic_rpm-3.7.1.182 lib/new_relic/transaction_sample/composite_segment.rb
newrelic_rpm-3.7.1.180 lib/new_relic/transaction_sample/composite_segment.rb
newrelic_rpm-3.7.0.177 lib/new_relic/transaction_sample/composite_segment.rb
newrelic_rpm-3.7.0.174.beta lib/new_relic/transaction_sample/composite_segment.rb
newrelic_rpm-3.6.9.171 lib/new_relic/transaction_sample/composite_segment.rb
newrelic_rpm-3.6.8.168 lib/new_relic/transaction_sample/composite_segment.rb
newrelic_rpm-3.6.8.164 lib/new_relic/transaction_sample/composite_segment.rb
newrelic_rpm-3.6.7.159 lib/new_relic/transaction_sample/composite_segment.rb
newrelic_rpm-3.6.7.159.beta lib/new_relic/transaction_sample/composite_segment.rb
newrelic_rpm-3.6.7.152 lib/new_relic/transaction_sample/composite_segment.rb
newrelic_rpm-3.6.6.147 lib/new_relic/transaction_sample/composite_segment.rb
newrelic_rpm-3.6.5.130 lib/new_relic/transaction_sample/composite_segment.rb