15 lines
246 B
Go
15 lines
246 B
Go
package metrics
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/prometheus/client_golang/prometheus/promhttp"
|
|
)
|
|
|
|
func Handler() gin.HandlerFunc {
|
|
h := promhttp.Handler()
|
|
|
|
return func(c *gin.Context) {
|
|
h.ServeHTTP(c.Writer, c.Request)
|
|
}
|
|
}
|