diff options
author | bodqhrohro <bodqhrohro@gmail.com> | 2020-01-13 18:31:28 +0300 |
---|---|---|
committer | bodqhrohro <bodqhrohro@gmail.com> | 2020-01-13 18:31:28 +0300 |
commit | cfc9e1d52292b69260ba38d8652b8a5f67787a67 (patch) | |
tree | 626667a9595d1d5489f5ccdbf44e846044d72e6c /telegabber.go | |
parent | 48ac4fdcef1169bba42593b723a0ef0a15afd5e1 (diff) |
Add pprof
Diffstat (limited to 'telegabber.go')
-rw-r--r-- | telegabber.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/telegabber.go b/telegabber.go index 2752163..14b3b3d 100644 --- a/telegabber.go +++ b/telegabber.go @@ -1,6 +1,10 @@ package main import ( + "flag" + "fmt" + "net/http" + _ "net/http/pprof" "os" "os/signal" @@ -25,6 +29,15 @@ var cleanupDone chan struct{} var sigintChannel chan os.Signal func main() { + var profilingPort = flag.Int("profiling-port", 0, "The port for pprof server") + flag.Parse() + + if *profilingPort > 0 { + go func() { + log.Println(http.ListenAndServe(fmt.Sprintf("localhost:%v", *profilingPort), nil)) + }() + } + cleanupDone = make(chan struct{}) sigintChannel = make(chan os.Signal, 1) signal.Notify(sigintChannel, os.Interrupt) |