1 Star 0 Fork 0

younland/asynqmon

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
server_handlers.go 897 Bytes
一键复制 编辑 原始数据 按行查看 历史
ajatprabha 提交于 2021-10-04 20:48 . unexport types
package asynqmon
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, pf PayloadFormatter) 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, pf),
}
if err := json.NewEncoder(w).Encode(resp); err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/younland/asynqmon.git
git@gitee.com:younland/asynqmon.git
younland
asynqmon
asynqmon
v1.0.0

搜索帮助