|
12345678910111213141516171819202122232425262728 |
- package monitoring
-
- import (
- "net/http"
-
- "github.com/zeromicro/go-zero/rest/httpx"
- "gitlink.org.cn/JointCloud/pcm-coordinator/internal/logic/monitoring"
- "gitlink.org.cn/JointCloud/pcm-coordinator/internal/svc"
- "gitlink.org.cn/JointCloud/pcm-coordinator/internal/types"
- )
-
- func SyncClusterAlertHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
- return func(w http.ResponseWriter, r *http.Request) {
- var req types.SyncClusterAlertReq
- if err := httpx.Parse(r, &req); err != nil {
- httpx.ErrorCtx(r.Context(), w, err)
- return
- }
-
- l := monitoring.NewSyncClusterAlertLogic(r.Context(), svcCtx)
- err := l.SyncClusterAlert(&req)
- if err != nil {
- httpx.ErrorCtx(r.Context(), w, err)
- } else {
- httpx.Ok(w)
- }
- }
- }
|