blob: 125bed72b509e942afeffa09632bd633a94debd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package debug // import "github.com/docker/docker/api/server/router/debug"
import (
"context"
"net/http"
"net/http/pprof"
)
func handlePprof(ctx context.Context, w http.ResponseWriter, r *http.Request, vars map[string]string) error {
pprof.Handler(vars["name"]).ServeHTTP(w, r)
return nil
}
|