log_windows_x86.go 185 B

1234567891011121314
  1. package util
  2. import (
  3. "fmt"
  4. "net/http"
  5. _ "net/http/pprof"
  6. )
  7. func init() {
  8. go func() {
  9. fmt.Println("pprof running on %d", 6060)
  10. http.ListenAndServe("0.0.0.0:6060", nil)
  11. }()
  12. }