class NewRelic::Agent::Instrumentation::MetricFrame

This is a legacy support shim now that the MetricFrame functionality has moved over to the Transaction class instead.

This class is deprecated and will be removed in a future agent version.

@api public @deprecated in favor of the Transaction class

Public Class Methods

abort_transaction!() click to toggle source

@deprecated

# File lib/new_relic/agent/instrumentation/metric_frame.rb, line 29
def self.abort_transaction!
  NewRelic::Agent::Deprecator.deprecate(
    "NewRelic::Agent::Instrumentation::MetricFrame.abort_transaction!",
    "NewRelic::Agent::Transaction.abort_transaction!")
  Transaction.abort_transaction!
end
recording_web_transaction?() click to toggle source

@deprecated

# File lib/new_relic/agent/instrumentation/metric_frame.rb, line 20
def self.recording_web_transaction?
  NewRelic::Agent::Deprecator.deprecate(
    "NewRelic::Agent::Instrumentation::MetricFrame.recording_web_transaction?",
    "NewRelic::Agent::Transaction.recording_web_transaction?")

  Transaction.recording_web_transaction?
end