1.引入包
go get github.com/prometheus/client_golang
2.添加metrics路径

app.Get("/metrics", http.UnGzip, iris.FromStd(promhttp.Handler()))


func UnGzip(ctx context.Context) {
	ctx.Gzip(false)
	ctx.Next()
}

 

3.启动项目查看默认数据

4.Grafana添加模版