mirror of
https://github.com/thomiceli/opengist.git
synced 2024-12-23 13:02:39 +00:00
31 lines
646 B
Go
31 lines
646 B
Go
package web
|
|
|
|
import (
|
|
"github.com/labstack/echo/v4"
|
|
"github.com/thomiceli/opengist/internal/db"
|
|
"time"
|
|
)
|
|
|
|
func healthcheck(ctx echo.Context) error {
|
|
// Check database connection
|
|
dbOk := "ok"
|
|
httpStatus := 200
|
|
|
|
err := db.Ping()
|
|
if err != nil {
|
|
dbOk = "ko"
|
|
httpStatus = 503
|
|
}
|
|
|
|
return ctx.JSON(httpStatus, map[string]interface{}{
|
|
"opengist": "ok",
|
|
"database": dbOk,
|
|
"time": time.Now().Format(time.RFC3339),
|
|
})
|
|
}
|
|
|
|
// metrics is a dummy handler to satisfy the /metrics endpoint (for Prometheus, Openmetrics, etc.)
|
|
// until we have a proper metrics endpoint
|
|
func metrics(ctx echo.Context) error {
|
|
return ctx.String(200, "")
|
|
}
|