github.com/iikira/iikira-go-utils@v0.0.0-20230610031953-f2cb11cde33a/pcsverbose/pcsdebug/pprof.go (about)

     1  package pcsdebug
     2  
     3  import (
     4  	"net/http"
     5  	_ "net/http/pprof"
     6  )
     7  
     8  func StartPprofListen() {
     9  	http.ListenAndServe("0.0.0.0:6060", nil)
    10  }