mirror of
https://github.com/hibiken/asynqmon.git
synced 2025-01-18 18:55:54 +08:00
58 lines
1.4 KiB
Go
58 lines
1.4 KiB
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"net/http"
|
|
"strings"
|
|
|
|
"github.com/go-redis/redis/v8"
|
|
)
|
|
|
|
// ****************************************************************************
|
|
// This file defines:
|
|
// - http.Handler(s) for redis info related endpoints
|
|
// ****************************************************************************
|
|
|
|
type RedisInfoResponse struct {
|
|
Addr string `json:"address"`
|
|
Info map[string]string `json:"info"`
|
|
RawInfo string `json:"raw_info"`
|
|
}
|
|
|
|
func newRedisInfoHandlerFunc(rdb *redis.Client) http.HandlerFunc {
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
ctx := context.Background()
|
|
res, err := rdb.Info(ctx).Result()
|
|
if err != nil {
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
return
|
|
}
|
|
info := parseRedisInfo(res)
|
|
resp := RedisInfoResponse{
|
|
Addr: redisAddr,
|
|
Info: info,
|
|
RawInfo: res,
|
|
}
|
|
if err := json.NewEncoder(w).Encode(resp); err != nil {
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
// Parses the return value from the INFO command.
|
|
// See https://redis.io/commands/info#return-value.
|
|
func parseRedisInfo(infoStr string) map[string]string {
|
|
info := make(map[string]string)
|
|
lines := strings.Split(infoStr, "\r\n")
|
|
for _, l := range lines {
|
|
kv := strings.Split(l, ":")
|
|
if len(kv) == 2 {
|
|
info[kv[0]] = kv[1]
|
|
}
|
|
}
|
|
return info
|
|
|
|
}
|