mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
commit
3afb3fffa3
|
@ -1,3 +1,7 @@
|
||||||
|
## 1.7.1 / 2017-06-12
|
||||||
|
|
||||||
|
* [BUGFIX] Fix double prefix redirect.
|
||||||
|
|
||||||
## 1.7.0 / 2017-06-06
|
## 1.7.0 / 2017-06-06
|
||||||
|
|
||||||
* [CHANGE] Compress remote storage requests and responses with unframed/raw snappy.
|
* [CHANGE] Compress remote storage requests and responses with unframed/raw snappy.
|
||||||
|
|
|
@ -171,7 +171,7 @@ func New(o *Options) *Handler {
|
||||||
instrf := prometheus.InstrumentHandlerFunc
|
instrf := prometheus.InstrumentHandlerFunc
|
||||||
|
|
||||||
router.Get("/", func(w http.ResponseWriter, r *http.Request) {
|
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))
|
router.Get("/alerts", instrf("alerts", h.alerts))
|
||||||
|
|
Loading…
Reference in a new issue