### [Pyroscope](https://pyroscope.io/)
### Pprof (memory analysis in Go)
Included in the net/http package
```go
package main
import (
"log"
"net/http"
_ "net/http/pprof"
)
func main() {
go func() {
log.Println(http.ListenAndServer("localhost:6000", nil))
}()
}
```
- [Visualization tool](https://github.com/google/pprof)