1
0
Fork 0

Adds dummy prom metrics for alerting

Dieser Commit ist enthalten in:
Stephen McQuay 2018-05-18 11:51:25 -07:00
Ursprung 37d0335f92
Commit b8491e384d
Signiert von: sm
GPG-Schlüssel-ID: C383C74875475AC8
1 geänderte Dateien mit 4 neuen und 0 gelöschten Zeilen

Datei anzeigen

@ -68,6 +68,7 @@ func NewController(conf Config, mprof, pprof, staticFiles string) *http.ServeMux
"bandwidth": "/api/v0/game/bw/",
"fsu": "/api/v0/fsu/",
"info": "/api/v0/info/",
"metrics": "/metrics",
}
sm := http.NewServeMux()
@ -108,6 +109,9 @@ func NewController(conf Config, mprof, pprof, staticFiles string) *http.ServeMux
sm.Handle(prefix["bandwidth"], JsonHandler(c.BW))
sm.HandleFunc(prefix["fsu"], c.KillServer)
sm.HandleFunc(prefix["info"], c.Info)
sm.HandleFunc(prefix["metrics"], func(w http.ResponseWriter, req *http.Request) {
fmt.Fprintf(w, "up 1\n")
})
return sm
}