1 Star 0 Fork 0

zengfanyao / common

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
prometheus.go 372 Bytes
一键复制 编辑 原始数据 按行查看 历史
zengfanyao 提交于 2022-05-08 14:45 . premethues
package common
import (
"github.com/asim/go-micro/v3/util/log"
"github.com/prometheus/client_golang/prometheus/promhttp"
"net/http"
"strconv"
)
func PrometheusBoot(port int) {
http.Handle("/metrics",promhttp.Handler())
go func() {
err:= http.ListenAndServe("0.0.0.0:"+ strconv.Itoa(port),nil)
log.Info("start port")
if err!=nil {
log.Fatal(err)
}
}()
}
1
https://gitee.com/apinktara/common.git
git@gitee.com:apinktara/common.git
apinktara
common
common
master

搜索帮助