I’m new to Sentry and using Node to run several async functions in parallel.
What’s the best way to limit breadcrumbs to a single function call?
So far I’ve tried initializing sentry above the async function, then using Sentry.withScope inside. Not ideal because my breadcrumbs include output outside each async function. (My understanding is withScope clones the current scope?)
Any ideas? This must be a common use case, there’s probably an easy way to do this.