AJ

Results 9 comments of AJ

`offset` should be set inside of the `options` key e.g. `builder.getAll('page', { options: { offset: 25 }})`

There is another solution that doesn't require adding any additional libraries. You can get just the image's EXIF orientation from the array buffer using this snippet: https://stackoverflow.com/a/32490603 Although, I would...

Hi @lforst, with the first method, according to the logs the esbuild is run only once before the sentry plugin. It is when the sentry plugin starts that it repeatedly...

@lforst here is a reproduction with a Github action that you can use to test https://github.com/ancheetah/serverless-sentry-esbuild

Thanks for tracking that down. I think using the Sentry CLI after building and packaging will be a good workaround. However, the sentry-esbuild plugin is still needed to inject the...

Hey @markuspoerschke we call the `sentry-cli` commands to upload sourcemaps in a script that does some re-packaging after `sls package`. First, in your [serverless.yml](https://github.com/masslight/ottehr/blob/412c6ced1227e67f4174889494ca00484c410cd7/packages/intake/zambdas/serverless.yml#L19-L20) turn the sourcemaps option on for...

Hi @andreiborza , have you had a chance to look into @AlexMayleRdn comment? I am having the same issue. `Sentry.getCurrentScope().setTransactionName()` does not appear to do anything. We still see the...

> [@ancheetah](https://github.com/ancheetah) the transaction name is set by opentelemetry, we can't change that via `setTransaction`. Can you try [changing it via a `beforeSend` hook](https://docs.sentry.io/platforms/javascript/configuration/filtering/#using-before-send) in `Sentry.init`? @andreiborza ~~that did not...