PK
Size: a a a
PK
Е
Е
Е
Е
Е
Е
PK
PK
PK
PK
Е
Е
PK
PK
Е
Е
PK
Е
package pprof
import (
"net/http"
_ "net/http/pprof"
"runtime"
)
type Config struct {
Name string
Address string
}
type Server struct {
config Config
server *http.Server
}
func New(config Config) *Server {
return &Server{
config: config,
server: &http.Server{
Addr: config.Address,
},
}
}
func (s *Server) Run() {
go func() {
runtime.SetMutexProfileFraction(5)
runtime.SetBlockProfileRate(100)
if err := s.server.ListenAndServe(); err != nil {
panic("error while starting pprof server")
}
}()
}
Е
s := pprof.New(pprof.Config{
Name: "xxxx",
Address: ":1488",
})
s.Run()
fmt.Println(Parse("./dump.xml"))
time.Sleep(time.Hour)