2019-01-24 20:15:10 +00:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
2018-05-30 15:03:44 +01:00
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
package process
|
|
|
|
|
|
|
|
import (
|
2018-07-26 15:21:35 +01:00
|
|
|
"flag"
|
|
|
|
"fmt"
|
2018-05-30 15:03:44 +01:00
|
|
|
"net"
|
|
|
|
"net/http"
|
|
|
|
"net/http/pprof"
|
|
|
|
|
|
|
|
"go.uber.org/zap"
|
|
|
|
monkit "gopkg.in/spacemonkeygo/monkit.v2"
|
|
|
|
"gopkg.in/spacemonkeygo/monkit.v2/present"
|
|
|
|
)
|
|
|
|
|
2018-07-26 15:21:35 +01:00
|
|
|
var (
|
2019-01-24 21:04:29 +00:00
|
|
|
debugAddr = flag.String("debug.addr", "localhost:0", "address to listen on for debug endpoints")
|
2018-07-26 15:21:35 +01:00
|
|
|
)
|
|
|
|
|
2018-05-30 15:03:44 +01:00
|
|
|
func init() {
|
|
|
|
// zero out the http.DefaultServeMux net/http/pprof so unhelpfully
|
|
|
|
// side-effected.
|
|
|
|
*http.DefaultServeMux = http.ServeMux{}
|
|
|
|
}
|
|
|
|
|
2019-01-24 21:04:29 +00:00
|
|
|
func initDebug(logger *zap.Logger, r *monkit.Registry) (err error) {
|
2018-05-30 15:03:44 +01:00
|
|
|
var mux http.ServeMux
|
|
|
|
mux.HandleFunc("/debug/pprof/", pprof.Index)
|
|
|
|
mux.HandleFunc("/debug/pprof/cmdline", pprof.Cmdline)
|
|
|
|
mux.HandleFunc("/debug/pprof/profile", pprof.Profile)
|
|
|
|
mux.HandleFunc("/debug/pprof/symbol", pprof.Symbol)
|
|
|
|
mux.HandleFunc("/debug/pprof/trace", pprof.Trace)
|
2019-04-03 20:13:39 +01:00
|
|
|
|
2018-05-30 15:03:44 +01:00
|
|
|
mux.Handle("/mon/", http.StripPrefix("/mon", present.HTTP(r)))
|
2018-07-26 15:21:35 +01:00
|
|
|
mux.HandleFunc("/health", func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
_, _ = fmt.Fprintln(w, "OK")
|
|
|
|
})
|
|
|
|
ln, err := net.Listen("tcp", *debugAddr)
|
2018-05-30 15:03:44 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
go func() {
|
|
|
|
err := (&http.Server{Handler: &mux}).Serve(ln)
|
|
|
|
if err != nil {
|
|
|
|
logger.Error("debug server died", zap.Error(err))
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
return nil
|
|
|
|
}
|