Sha256: f3c4ade8e0893f89504e662f91afc546e66e7a8bba5216c9112b9ef1f81d78ed

Contents?: true

Size: 710 Bytes

Versions: 9

Compression:

Stored size: 710 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 'logger'

$: << File.expand_path(File.dirname(__FILE__))

require 'performance/result'
require 'performance/runner'
require 'performance/test_case'
require 'performance/timer'
require 'performance/instrumentor'
require 'performance/console_reporter'
require 'performance/json_reporter'
require 'performance/hako_client'
require 'performance/hako_reporter'

module Performance
  def self.logger
    log_path = ENV['LOG'] || $stderr
    @logger ||= Logger.new(log_path)
  end

  def self.log_path=(path)
    @logger = Logger.new(path)
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
newrelic_rpm-3.7.0.177 test/performance/lib/performance.rb
newrelic_rpm-3.7.0.174.beta test/performance/lib/performance.rb
newrelic_rpm-3.6.9.171 test/performance/lib/performance.rb
newrelic_rpm-3.6.8.168 test/performance/lib/performance.rb
newrelic_rpm-3.6.8.164 test/performance/lib/performance.rb
newrelic_rpm-3.6.7.159 test/performance/lib/performance.rb
newrelic_rpm-3.6.7.159.beta test/performance/lib/performance.rb
newrelic_rpm-3.6.7.152 test/performance/lib/performance.rb
newrelic_rpm-3.6.6.147 test/performance/lib/performance.rb