mirror of
https://github.com/hibiken/asynqmon.git
synced 2025-01-19 03:05:53 +08:00
35 lines
868 B
Go
35 lines
868 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/hibiken/asynq"
|
||
|
)
|
||
|
|
||
|
// ****************************************************************************
|
||
|
// This file defines:
|
||
|
// - http.Handler(s) for server related endpoints
|
||
|
// ****************************************************************************
|
||
|
|
||
|
type ListServersResponse struct {
|
||
|
Servers []*ServerInfo `json:"servers"`
|
||
|
}
|
||
|
|
||
|
func newListServersHandlerFunc(inspector *asynq.Inspector) http.HandlerFunc {
|
||
|
return func(w http.ResponseWriter, r *http.Request) {
|
||
|
srvs, err := inspector.Servers()
|
||
|
if err != nil {
|
||
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||
|
return
|
||
|
}
|
||
|
resp := ListServersResponse{
|
||
|
Servers: toServerInfoList(srvs),
|
||
|
}
|
||
|
if err := json.NewEncoder(w).Encode(resp); err != nil {
|
||
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||
|
return
|
||
|
}
|
||
|
}
|
||
|
}
|