We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As I'm marking up my functions for tracing, I find my self often doing this:
def function_of_app(): with context.iopipe.mark('function_name'): # function code
It would be very nice to be able to do something like this:
@iopipe.mark('function_name') def function_of_app(): # function code
The text was updated successfully, but these errors were encountered:
Allow trace marker to be use as decorator
58d3134
Closes iopipe#297
Allow trace marker to be use as decorator (#325)
cadd2d5
Closes #297
Successfully merging a pull request may close this issue.
As I'm marking up my functions for tracing, I find my self often doing this:
It would be very nice to be able to do something like this:
The text was updated successfully, but these errors were encountered: