Go gin 接入 prometheus
Prometheus 的 go sdk 是由官方提供的,地址:https://github.com/prometheus/client_golang ,里面包含了生成 prometheus metrics、http handler、prometheus client 的功能。
安装:
go get github.com/prometheus/client_golang
编写 gin handle
func PromHandler(handler http.Handler) gin.HandlerFunc {
return func(c *gin.Context) {
handler.ServeHTTP(c.Writer, c.Request)
}
}
配置 route
# e *gin.Engine
e.GET("metrics", prom.PromHandler(promhttp.Handler()))
启动项目,访问 /metrics
包含了一些内置指标,比如 gc 等等。下一步就可以配置接入 prometheus server,grafana 配置界面了
grafana dashboard
目前学习.NET Core 最好的教程 .NET Core 官方教程 ASP.NET Core 官方教程