Sha256: 3f5a34cd2253aefb1de3251d03504401bbe3c041e999864501327e605b35d0df

Contents?: true

Size: 1019 Bytes

Versions: 9

Compression:

Stored size: 1019 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 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

9 entries across 9 versions & 2 rubygems

Version Path
ghazel-newrelic_rpm-3.1.0.1 lib/new_relic/agent/shim_agent.rb
newrelic_rpm-3.1.0 lib/new_relic/agent/shim_agent.rb
newrelic_rpm-3.1.0.beta5 lib/new_relic/agent/shim_agent.rb
newrelic_rpm-3.1.0.beta4 lib/new_relic/agent/shim_agent.rb
newrelic_rpm-3.1.0.djlogging2 lib/new_relic/agent/shim_agent.rb
newrelic_rpm-3.1.0.djlogging lib/new_relic/agent/shim_agent.rb
newrelic_rpm-3.1.0.beta3 lib/new_relic/agent/shim_agent.rb
newrelic_rpm-3.1.0.beta2 lib/new_relic/agent/shim_agent.rb
newrelic_rpm-3.1.0.beta1 lib/new_relic/agent/shim_agent.rb