mirror of
https://github.com/prometheus/prometheus.git
synced 2024-12-26 14:09:41 -08:00
Web handler returns 404 for favicon requests
This commit is contained in:
parent
b886a14cfc
commit
9183302b1f
|
@ -41,6 +41,10 @@ type WebService struct {
|
||||||
func (w WebService) ServeForever() error {
|
func (w WebService) ServeForever() error {
|
||||||
gorest.RegisterService(w.MetricsHandler)
|
gorest.RegisterService(w.MetricsHandler)
|
||||||
|
|
||||||
|
exp.Handle("/favicon.ico", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
http.Error(w, "", 404)
|
||||||
|
}))
|
||||||
|
|
||||||
// TODO(julius): This will need to be rewritten once the exp package provides
|
// TODO(julius): This will need to be rewritten once the exp package provides
|
||||||
// the coarse mux behaviors via a wrapper function.
|
// the coarse mux behaviors via a wrapper function.
|
||||||
exp.Handle("/debug/pprof/", http.HandlerFunc(pprof.Index))
|
exp.Handle("/debug/pprof/", http.HandlerFunc(pprof.Index))
|
||||||
|
|
Loading…
Reference in a new issue