Sha256: 50f91630045336649575fb1862ca5ded98a3abfc71c686fb89e8e1be1a8ef872

Contents?: true

Size: 741 Bytes

Versions: 14

Compression:

Stored size: 741 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/platform'
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

14 entries across 14 versions & 1 rubygems

Version Path
newrelic_rpm-3.9.3.241 test/performance/lib/performance.rb
newrelic_rpm-3.9.2.239 test/performance/lib/performance.rb
newrelic_rpm-3.9.1.236 test/performance/lib/performance.rb
newrelic_rpm-3.9.0.229 test/performance/lib/performance.rb
newrelic_rpm-3.8.1.221 test/performance/lib/performance.rb
newrelic_rpm-3.8.0.218 test/performance/lib/performance.rb
newrelic_rpm-3.7.3.204 test/performance/lib/performance.rb
newrelic_rpm-3.7.3.199 test/performance/lib/performance.rb
newrelic_rpm-3.7.2.195 test/performance/lib/performance.rb
newrelic_rpm-3.7.2.192 test/performance/lib/performance.rb
newrelic_rpm-3.7.2.190.beta test/performance/lib/performance.rb
newrelic_rpm-3.7.1.188 test/performance/lib/performance.rb
newrelic_rpm-3.7.1.182 test/performance/lib/performance.rb
newrelic_rpm-3.7.1.180 test/performance/lib/performance.rb