зеркало из https://github.com/Azure/ARO-RP.git
enable pprof on localhost
This commit is contained in:
Родитель
7e29cd9089
Коммит
f1cd7a1978
|
@ -8,6 +8,8 @@ import (
|
|||
"flag"
|
||||
"fmt"
|
||||
"math/rand"
|
||||
"net/http"
|
||||
_ "net/http/pprof"
|
||||
"os"
|
||||
"strings"
|
||||
"time"
|
||||
|
@ -36,6 +38,10 @@ func main() {
|
|||
ctx := context.Background()
|
||||
log := utillog.GetLogger()
|
||||
|
||||
go func() {
|
||||
log.Warn(http.ListenAndServe("localhost:6060", nil))
|
||||
}()
|
||||
|
||||
log.Printf("starting, git commit %s", version.GitCommit)
|
||||
|
||||
var err error
|
||||
|
|
Загрузка…
Ссылка в новой задаче