Allow disabling debug server

master
q3k 2018-08-27 21:07:23 +01:00
parent a509a47a50
commit b27d528d69
1 changed files with 17 additions and 13 deletions

30
grpc.go
View File

@ -123,21 +123,25 @@ func (s *server) serveForever() {
}()
glog.Infof("Listening for GRPC on %v", s.opts.listenAddress)
httpMux := http.NewServeMux()
httpMux.HandleFunc("/debug/status", statusz.StatusHandler)
httpMux.HandleFunc("/debug/requests", trace.Traces)
httpMux.HandleFunc("/", statusz.StatusHandler)
if s.opts.debugAddress == "" {
glog.Info("Disabling debug HTTP server")
} else {
httpMux := http.NewServeMux()
httpMux.HandleFunc("/debug/status", statusz.StatusHandler)
httpMux.HandleFunc("/debug/requests", trace.Traces)
httpMux.HandleFunc("/", statusz.StatusHandler)
if err := s.setupDebugHTTP(httpMux); err != nil {
glog.Exitf("Could not setup HTTP server: %v", err)
}
go func() {
if err := s.http.server.Serve(s.http.listen); err != nil {
glog.Exitf("Could not start HTTP server: %v", err)
if err := s.setupDebugHTTP(httpMux); err != nil {
glog.Exitf("Could not setup HTTP server: %v", err)
}
}()
glog.Infof("Listening for HTTP on %v", s.opts.debugAddress)
go func() {
if err := s.http.server.Serve(s.http.listen); err != nil {
glog.Exitf("Could not start HTTP server: %v", err)
}
}()
glog.Infof("Listening for HTTP on %v", s.opts.debugAddress)
}
select {}
}