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)
}
}
+6 -1
View File
@@ -64,9 +64,14 @@ func NewGinRouter() *gin.Engine {
{
messageCMSRouterGroup.POST("/get_chat_logs", messageCMS.GetChatLogs)
}
friendCMSRouterGroup := r2.Group("friend")
friendCMSRouterGroup := r2.Group("/friend")
{
friendCMSRouterGroup.POST("/get_friends", friend.GetUserFriends)
}
prometheusRouterGroup := r2.Group("/prometheus")
{
prometheusRouterGroup.GET("/metrics", prometheusHandler())
}
return baseRouter
}