Merge pull request #1017 from prometheus/crash-on-web-error

Exit when web server encounters a startup error
This commit is contained in:
Julius Volz 2015-08-21 13:15:06 +02:00
commit a7c248e3b1
2 changed files with 21 additions and 19 deletions

View File

@ -157,6 +157,8 @@ func Main() int {
log.Warn("Received SIGTERM, exiting gracefully...")
case <-webHandler.Quit():
log.Warn("Received termination request via web service, exiting gracefully...")
case err := <-webHandler.ListenError():
log.Errorln("Error starting web server, exiting gracefully:", err)
}
log.Info("See you next time!")

View File

@ -60,6 +60,7 @@ type Handler struct {
federation *Federation
router *route.Router
listenErrCh chan error
quitCh chan struct{}
reloadCh chan struct{}
options *Options
@ -111,6 +112,7 @@ func New(st local.Storage, qe *promql.Engine, rm *rules.Manager, status *Prometh
h := &Handler{
router: router,
listenErrCh: make(chan error),
quitCh: make(chan struct{}),
reloadCh: make(chan struct{}),
options: o,
@ -179,11 +181,17 @@ func New(st local.Storage, qe *promql.Engine, rm *rules.Manager, status *Prometh
return h
}
// ListenError returns the receive-only channel that signals errors while starting the web server.
func (h *Handler) ListenError() <-chan error {
return h.listenErrCh
}
// Quit returns the receive-only quit channel.
func (h *Handler) Quit() <-chan struct{} {
return h.quitCh
}
// Reload returns the receive-only channel that signals configuration reload requests.
func (h *Handler) Reload() <-chan struct{} {
return h.reloadCh
}
@ -191,15 +199,7 @@ func (h *Handler) Reload() <-chan struct{} {
// Run serves the HTTP endpoints.
func (h *Handler) Run() {
log.Infof("Listening on %s", h.options.ListenAddress)
// If we cannot bind to a port, retry after 30 seconds.
for {
err := http.ListenAndServe(h.options.ListenAddress, h.router)
if err != nil {
log.Errorf("Could not listen on %s: %s", h.options.ListenAddress, err)
}
time.Sleep(30 * time.Second)
}
h.listenErrCh <- http.ListenAndServe(h.options.ListenAddress, h.router)
}
func (h *Handler) alerts(w http.ResponseWriter, r *http.Request) {