|
|
|
@@ -0,0 +1,25 @@ |
|
|
|
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/api/internal/logic/monitoring" |
|
|
|
"gitlink.org.cn/JointCloud/pcm-coordinator/api/internal/svc" |
|
|
|
"gitlink.org.cn/JointCloud/pcm-coordinator/api/internal/types" |
|
|
|
) |
|
|
|
|
|
|
|
func AdapterInfoHandler(svcCtx *svc.ServiceContext) http.HandlerFunc { |
|
|
|
return func(w http.ResponseWriter, r *http.Request) { |
|
|
|
var req types.AdapterInfoReq |
|
|
|
if err := httpx.Parse(r, &req); err != nil { |
|
|
|
httpx.ErrorCtx(r.Context(), w, err) |
|
|
|
return |
|
|
|
} |
|
|
|
|
|
|
|
l := monitoring.NewAdapterInfoLogic(r.Context(), svcCtx) |
|
|
|
resp, err := l.AdapterInfo(&req) |
|
|
|
result.HttpResult(r, w, resp, err) |
|
|
|
} |
|
|
|
} |