Austin
Austin
Thanks, I think the Scope.AddEventProcessor should allow me to do what I need. I want to build a sentry hook for logrus so that errors are sent to sentry automatically...
This is actually already supported for both "-only" and "-excl", but it is a bit awkward to use. The command for your example would be `gotests -only StructAPrintName`. The regexes...
>All frames in my stack traces look like they are "in app", no matter where they are from. Using `-trimpath` now has the opposite problem where all frames are marked...
A quick fix in this library would be to change the check here https://github.com/getsentry/sentry-go/blob/8f8897dc8b964b6116f737c6e78ecd55af0f90dd/stacktrace.go#L336 to change ``` strings.HasPrefix(frame.AbsPath, goRoot) ``` to ``` (goRoot != "" && strings.HasPrefix(frame.AbsPath, goRoot)) ```
Thanks, you've made it clear why recording the inputs would be undesirable in some cases. Still, if we knew that our inputs were deterministic could we opt in to recording...