This commit is contained in:
wangchuxiao
2022-09-07 16:53:53 +08:00
parent 156e9e2fc7
commit d00b265347
4 changed files with 46 additions and 2 deletions
+14
View File
@@ -0,0 +1,14 @@
package cms_api
import (
"github.com/gin-gonic/gin"
"github.com/prometheus/client_golang/prometheus/promhttp"
)
func prometheusHandler() gin.HandlerFunc {
h := promhttp.Handler()
return func(c *gin.Context) {
h.ServeHTTP(c.Writer, c.Request)
}
}