gostackparse icon indicating copy to clipboard operation
gostackparse copied to clipboard

Package gostackparse parses goroutines stack traces as produced by panic() or debug.Stack() at ~300 MiB/s.

Results 3 gostackparse issues
Sort by recently updated
recently updated
newest added

Which gourotine i should to log, when recovering from panic? Example: ```go if err := recover(); err != nil { stack := debug.Stack() goroutines, _ := gostackparse.Parse(bytes.NewReader(stack)) log(goroutines[0]) // ?...

Hi there. We use [snyk](https://snyk.io) for vuln scanning in our project, and it identified a minor vuln in the `Masterminds/goutils` package dependency which could be addressed by upgrading from `v1.1.0`...