16 lines
379 B
Go
16 lines
379 B
Go
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)
|
|
}
|
|
}
|