Quite new to sentry and could not find my question in the docs.
Let’s say we have a project with 30 python scripts. Does it suffice to put sentry_sdk.init(..)
in your __init__.py
and will it track the errors in all the 30 python scripts? Or do we have to put sentry_sdk.init
in every script to track the errors?
Furthermore, I am using the @serverless_function
since we run our projects on Azure functions.