Sha256: f83a5722c8956cec898d8cad39c72cf0b9a28934f2cbecb8a5c4ca01dc1f2e8f
Contents?: true
Size: 961 Bytes
Versions: 2
Compression:
Stored size: 961 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__) require 'performance/platform' require 'performance/result' require 'performance/runner' require 'performance/test_case' require 'performance/timer' require 'performance/instrumentor' require 'performance/reporting' require 'performance/table' require 'performance/console_reporter' require 'performance/json_reporter' require 'performance/formatting_helpers' require 'performance/hako_client' require 'performance/hako_reporter' require 'performance/baseline' require 'performance/baseline_save_reporter' require 'performance/baseline_compare_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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
newrelic_rpm-4.1.0.333 | test/performance/lib/performance.rb |
newrelic_rpm-4.0.0.332 | test/performance/lib/performance.rb |