Agustin Aon

Results 15 comments of Agustin Aon

For usage reference, it can be used like this: ```rust let dispatcher = Dispatcher::builder( bot, entry_handler.with_tracing_span(|deps: DependencyMap| async move { let update: Arc = deps.get(); tracing::info_span!( "Handle update", username =...

@teloxidebot ready

Hey everyone. I made some improvements to log more data and remove the deprecated`startTransaction`. Although we still cannot avoid using the `pushScope` This is the middleware I'm currently using: ```ts...

Hey, I haven't touched much the code since I posted it here but it's still running in a production app. This is the version I'm using: ``` "@sentry/nextjs": "^7.103.0" ```...

This is my `entry.client.tsx` config: ```ts export function initSentry() { init({ enabled: window.ENV.NODE_ENV === "production", dsn: window.ENV.SENTRY_DSN, environment: window.ENV.NODE_ENV, beforeSend(event) { if (event.request?.url) { const url = new URL(event.request.url) if...