mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-12-13 07:59:08 +08:00
20 lines
515 B
Go
20 lines
515 B
Go
package v2
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/1Panel-dev/1Panel/agent/app/api/v2/helper"
|
|
"github.com/1Panel-dev/1Panel/agent/constant"
|
|
httpUtils "github.com/1Panel-dev/1Panel/agent/utils/http"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func (b *BaseApi) CheckHealth(c *gin.Context) {
|
|
_, err := httpUtils.RequestToMaster("/api/v2/agent/health", http.MethodGet, nil)
|
|
if err != nil {
|
|
helper.ErrorWithDetail(c, constant.CodeErrInternalServer, constant.ErrTypeInternalServer, err)
|
|
return
|
|
}
|
|
helper.SuccessWithOutData(c)
|
|
}
|