imposm3/stats/http.go

14 lines
167 B
Go
Raw Permalink Normal View History

2013-05-30 18:18:48 +04:00
package stats
import (
"log"
"net/http"
_ "net/http/pprof"
)
func StartHttpPProf(bind string) {
go func() {
log.Println(http.ListenAndServe(bind, nil))
}()
}