forked from mirrors/homebox
17 lines
412 B
Go
17 lines
412 B
Go
|
package debughandlers
|
||
|
|
||
|
import (
|
||
|
"expvar"
|
||
|
"net/http"
|
||
|
"net/http/pprof"
|
||
|
)
|
||
|
|
||
|
func New(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)
|
||
|
mux.Handle("/debug/vars", expvar.Handler())
|
||
|
}
|