Sha256: e17c17928dea5d1e6366b1dc6cb2ce228c098dca80c630cb9e436c0915342219

Contents?: true

Size: 992 Bytes

Versions: 3

Compression:

Stored size: 992 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
        @histogram.extend NewRelic::Histogram::Shim
        @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 push_trace_execution_flag(*args); end
      def pop_trace_execution_flag(*args); end
      def browser_instrumentation_header(options={}); end
      def browser_instrumentation_footer(options={}); end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
newrelic_rpm-2.13.4.eum3 lib/new_relic/agent/shim_agent.rb
newrelic_rpm-2.13.4.eum2 lib/new_relic/agent/shim_agent.rb
newrelic_rpm-2.13.4.eum1 lib/new_relic/agent/shim_agent.rb