Fix console handler.

This was accidnetally broken in 2128d9d811.

Change-Id: I50ea1fdb8ae4d28ae4555410bee97e5037692aa5
This commit is contained in:
Brian Brazil 2014-07-04 16:47:48 +01:00 committed by Bjoern Rabenstein
parent bacc31d5cc
commit eb5d928da7
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ func (w WebService) ServeForever() error {
"/alerts", w.AlertsHandler,
))
http.Handle("/consoles/", prometheus.InstrumentHandler(
"/consoles/", http.StripPrefix("/static/", http.FileServer(http.Dir("web/static"))),
"/consoles/", http.StripPrefix("/consoles/", w.ConsolesHandler),
))
http.Handle("/graph", prometheus.InstrumentHandler(
"/graph", http.HandlerFunc(graphHandler),