Alexander Dinauer
Alexander Dinauer
Hello @gilday have you had a chance to test the fix @lbloder suggested?
Thanks for the feedback @Glyphack we'll improve troubleshooting docs.
Not sure how this works exactly in the Sentry backend but we could try to make it smarter by recognizing popular build tools (Gradle, Maven) and auto mapping modules after...
Ah thanks for the info. Good thing we already have a gradle and maven plugin, maybe they just need to be told the repo URL and offer some task that...
Sorry this was closed via the PR that added docs for a fix mentioned in this issue. Reopening.
@wzieba afaict there's currently no API to configure code mappings. So achieving this seems a little more comlex than assumed.
Yeah we'll likely have to make this more generic and rework integrations as well. It's now back in our backlog but I can't say when we'll get to it.
@wzieba you could take a look at the Sentry UI in browser dev tools and inspect API requests performed when adding code mappings, then replicate this in a script.
Thanks @wzieba that's great 🚀
I just tested it and the following code shows that it cares about the underlying string, not where the reference is coming from: ``` otelSpan.setAttribute(InternalSemanticAttributes.TEST1, "test1"); otelSpan.setAttribute(InternalSemanticAttributes.TEST2, "test2"); String test1...