From 0281d4aeef31a361eaa26deab0097c47668fd888 Mon Sep 17 00:00:00 2001 From: Bryan Boreham Date: Sun, 23 Apr 2017 16:58:15 +0000 Subject: [PATCH] Fix typo --- prog/probe.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prog/probe.go b/prog/probe.go index 274b6534d..33c579cc4 100644 --- a/prog/probe.go +++ b/prog/probe.go @@ -81,7 +81,7 @@ func maybeExportProfileData(flags probeFlags) { go func() { http.Handle("/metrics", prometheus.Handler()) log.Infof("Profiling data being exported to %s", flags.httpListen) - log.Infof("go tool proof http://%s/debug/pprof/{profile,heap,block}", flags.httpListen) + log.Infof("go tool pprof http://%s/debug/pprof/{profile,heap,block}", flags.httpListen) log.Infof("Profiling endpoint %s terminated: %v", flags.httpListen, http.ListenAndServe(flags.httpListen, nil)) }() }