Skip to content

Instantly share code, notes, and snippets.

@gnarg
Created September 27, 2011 18:39
Show Gist options
  • Save gnarg/1245865 to your computer and use it in GitHub Desktop.
Save gnarg/1245865 to your computer and use it in GitHub Desktop.
around_filter :ignore_transaction
def ignore_transaction
if current_user.team_member?
NewRelic::Agent.disable_all_tracing do
yield
end
else
yeild
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment