Open afifurrohman-id opened 1 month ago
Pinging code owners:
exporter/sentry: @AbhiPrasad
See Adding Labels via Comments if you do not have permissions to add labels yourself.
We probably want to do some extra validation here: https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/f02bdf9cd8f4a42a80df711e1add0ecb4f6b1dab/exporter/sentryexporter/sentry_exporter.go#L271-L272
@afifurrohman-id would you be open to create a PR?
Removing needs triage
based on response from code owner validating that this is a real issue.
Component(s)
exporter/sentry
What happened?
Description
base on this picture
library_version
is invalid in Sentry error because is emptySteps to Reproduce
import ( "context" "errors" "fmt"
)
func check(err error) { if err != nil { panic(err) } }
func main() { ctx, cancel := context.WithCancel(context.Background()) defer cancel()
}
Log output
Additional context
none