imposm3/stats/http.go
2018-10-26 13:20:38 +02:00

14 lines
197 B
Go

package stats
import (
"net/http"
_ "net/http/pprof"
"github.com/omniscale/imposm3/log"
)
func StartHTTPPProf(bind string) {
go func() {
log.Println(http.ListenAndServe(bind, nil))
}()
}