pprof.go 252 B

12345678910111213141516
  1. package debug
  2. import (
  3. "log"
  4. "net/http"
  5. _ "net/http/pprof"
  6. "runtime"
  7. )
  8. // Debugpprof 性能调试工具
  9. func Debugpprof() {
  10. runtime.SetMutexProfileFraction(100)
  11. runtime.SetBlockProfileRate(100)
  12. log.Println(http.ListenAndServe(":6060", nil))
  13. }