26 lines
747 B
Go
26 lines
747 B
Go
package monitoring
|
|
|
|
import (
|
|
"gitlink.org.cn/JointCloud/pcm-coordinator/pkg/repository/result"
|
|
"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 DeleteAlertRuleHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
var req types.DeleteAlertRuleReq
|
|
if err := httpx.Parse(r, &req); err != nil {
|
|
httpx.ErrorCtx(r.Context(), w, err)
|
|
return
|
|
}
|
|
|
|
l := monitoring.NewDeleteAlertRuleLogic(r.Context(), svcCtx)
|
|
err := l.DeleteAlertRule(&req)
|
|
result.HttpResult(r, w, nil, err)
|
|
}
|
|
}
|