mirror of
https://github.com/prometheus/prometheus.git
synced 2026-05-11 15:26:14 +02:00
commit
3afb3fffa3
@ -1,3 +1,7 @@
|
||||
## 1.7.1 / 2017-06-12
|
||||
|
||||
* [BUGFIX] Fix double prefix redirect.
|
||||
|
||||
## 1.7.0 / 2017-06-06
|
||||
|
||||
* [CHANGE] Compress remote storage requests and responses with unframed/raw snappy.
|
||||
|
||||
@ -171,7 +171,7 @@ func New(o *Options) *Handler {
|
||||
instrf := prometheus.InstrumentHandlerFunc
|
||||
|
||||
router.Get("/", func(w http.ResponseWriter, r *http.Request) {
|
||||
router.Redirect(w, r, path.Join(o.ExternalURL.Path, "/graph"), http.StatusFound)
|
||||
http.Redirect(w, r, path.Join(o.ExternalURL.Path, "/graph"), http.StatusFound)
|
||||
})
|
||||
|
||||
router.Get("/alerts", instrf("alerts", h.alerts))
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user