You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Having to put decorators all over the code base to monitor their performance can be cumbersome.
A single place to set up custom instrumentation would be nice.
Solution Brainstorm
Have a list of functions that can be passed to "sentry_sdk.init()".
When the SDK starts it goes through the list and instruments all the functions in the list.
Problem Statement
Having to put decorators all over the code base to monitor their performance can be cumbersome.
A single place to set up custom instrumentation would be nice.
Solution Brainstorm
Have a list of functions that can be passed to "sentry_sdk.init()".
When the SDK starts it goes through the list and instruments all the functions in the list.
Something like this:
This way you have one place to look what functions in your code base are custom instrumented.
The text was updated successfully, but these errors were encountered: