status-go/profiling/profiler.go

46 lines
1.1 KiB
Go
Raw Normal View History

2018-03-23 14:58:40 +01:00
package profiling
import (
"net/http"
hpprof "net/http/pprof"
2023-01-13 17:12:46 +00:00
"time"
2018-03-23 14:58:40 +01:00
"go.uber.org/zap"
"github.com/status-im/status-go/common"
"github.com/status-im/status-go/logutils"
2018-03-23 14:58:40 +01:00
)
// Profiler runs and controls a HTTP pprof interface.
type Profiler struct {
server *http.Server
}
// NewProfiler creates an instance of the profiler with
// the given port.
func NewProfiler(address string) *Profiler {
2018-03-23 14:58:40 +01:00
mux := http.NewServeMux()
mux.HandleFunc("/debug/pprof/", hpprof.Index)
mux.HandleFunc("/debug/pprof/cmdline", hpprof.Cmdline)
mux.HandleFunc("/debug/pprof/profile", hpprof.Profile)
mux.HandleFunc("/debug/pprof/symbol", hpprof.Symbol)
mux.HandleFunc("/debug/pprof/trace", hpprof.Trace)
p := Profiler{
server: &http.Server{
Addr: address,
2023-01-13 17:12:46 +00:00
ReadHeaderTimeout: 5 * time.Second,
Handler: mux,
2018-03-23 14:58:40 +01:00
},
}
return &p
}
// Go starts the HTTP pprof in the background.
func (p *Profiler) Go() {
go func() {
defer common.LogOnPanic()
logutils.ZapLogger().Info("debug server stopped", zap.Error(p.server.ListenAndServe()))
2018-03-23 14:58:40 +01:00
}()
logutils.ZapLogger().Info("debug server started")
2018-03-23 14:58:40 +01:00
}