Sha256: 8b18d9e3b3af5ae460cad3c9c2f37987737692cc3ec9c760ea2d6ac2d128896f

Contents?: true

Size: 1.92 KB

Versions: 11

Compression:

Stored size: 1.92 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/coerce'

module NewRelic
  class MetricData
    # a NewRelic::MetricSpec object
    attr_reader :metric_spec
    # the actual statistics object
    attr_accessor :stats

    def initialize(metric_spec, stats)
      @original_spec = nil
      @metric_spec = metric_spec
      self.stats = stats
    end

    def eql?(o)
     (metric_spec.eql? o.metric_spec) && (stats.eql? o.stats)
    end

    def original_spec
      @original_spec || @metric_spec
    end

    # assigns a new metric spec, and retains the old metric spec as
    # @original_spec if it exists currently
    def metric_spec= new_spec
      @original_spec = @metric_spec if @metric_spec
      @metric_spec = new_spec
    end

    def hash
      metric_spec.hash ^ stats.hash
    end

    def to_json(*a)
       %Q[{"metric_spec":#{metric_spec.to_json},"stats":{"total_exclusive_time":#{stats.total_exclusive_time},"min_call_time":#{stats.min_call_time},"call_count":#{stats.call_count},"sum_of_squares":#{stats.sum_of_squares},"total_call_time":#{stats.total_call_time},"max_call_time":#{stats.max_call_time}}}]
    end

    def to_s
      "#{metric_spec.name}(#{metric_spec.scope}): #{stats}"
    end

    def inspect
      "#<MetricData metric_spec:#{metric_spec.inspect}, stats:#{stats.inspect}>"
    end

    include NewRelic::Coerce

    def to_collector_array(encoder=nil)
      stat_key = { 'name' => metric_spec.name, 'scope' => metric_spec.scope }
      [ stat_key,
        [
          int(stats.call_count, stat_key),
          float(stats.total_call_time, stat_key),
          float(stats.total_exclusive_time, stat_key),
          float(stats.min_call_time, stat_key),
          float(stats.max_call_time, stat_key),
          float(stats.sum_of_squares, stat_key)
        ]
      ]
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

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