Sha256: ce4baf4b511a7ab34694d084bd4d252faee62557d8f353397d0d48b25cf39b00
Contents?: true
Size: 967 Bytes
Versions: 4
Compression:
Stored size: 967 Bytes
Contents
# This agent is loaded by the plug when the plug-in is disabled # It recreates just enough of the API to not break any clients that # invoke the Agent. module NewRelic module Agent class ShimAgent < NewRelic::Agent::Agent def self.instance @instance ||= self.new end def initialize super @stats_engine.extend NewRelic::Agent::StatsEngine::Shim @stats_engine.extend NewRelic::Agent::StatsEngine::Transactions::Shim @transaction_sampler.extend NewRelic::Agent::TransactionSampler::Shim @error_collector.extend NewRelic::Agent::ErrorCollector::Shim end def after_fork *args; end def start *args; end def shutdown; end def serialize; end def merge_data_from(*args); end def push_trace_execution_flag(*args); end def pop_trace_execution_flag(*args); end def browser_timing_header; "" end def browser_timing_footer; "" end end end end
Version data entries
4 entries across 4 versions & 1 rubygems