veza/veza-backend-api/internal/handlers/metrics.go

17 lines
379 B
Go
Raw Normal View History

2025-12-03 19:29:37 +00:00
package handlers
import (
"github.com/gin-gonic/gin"
"github.com/prometheus/client_golang/prometheus/promhttp"
)
// PrometheusMetrics expose les métriques Prometheus
// L'endpoint retourne les métriques au format Prometheus standard
func PrometheusMetrics() gin.HandlerFunc {
h := promhttp.Handler()
return func(c *gin.Context) {
h.ServeHTTP(c.Writer, c.Request)
}
}