# File lib/new_relic/agent.rb, line 438
    def disable_all_tracing
      return yield unless agent

      begin
        agent.push_trace_execution_flag(false)
        yield
      ensure
        agent.pop_trace_execution_flag
      end
    end