Sha256: 64c11e3ffcbbe635b6d60bcfaf2156d35f1c02307542ff836753bc4a7edd57f0

Contents?: true

Size: 1007 Bytes

Versions: 6

Compression:

Stored size: 1007 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
        @sql_sampler.extend NewRelic::Agent::SqlSampler::Shim
        @error_collector.extend NewRelic::Agent::ErrorCollector::Shim
      end
      def after_fork *args; end
      def start *args; end
      def shutdown *args; 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

6 entries across 6 versions & 3 rubygems

Version Path
wd_newrelic_rpm-3.5.8 lib/new_relic/agent/shim_agent.rb
sundawg_newrelic_rpm-3.5.8.2 lib/new_relic/agent/shim_agent.rb
sundawg_newrelic_rpm-3.5.8.1 lib/new_relic/agent/shim_agent.rb
newrelic_rpm-3.5.8.72 lib/new_relic/agent/shim_agent.rb
newrelic_rpm-3.5.8.70 lib/new_relic/agent/shim_agent.rb
newrelic_rpm-3.5.8.64.beta lib/new_relic/agent/shim_agent.rb