You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
444 B

package common
import (
"github.com/prometheus/client_golang/prometheus/promhttp"
"log"
"net/http"
"strconv"
)
func PrometheusBoot(port int) {
http.Handle("/metrics", promhttp.Handler())
//启动web服务
go func() {
err := http.ListenAndServe("0.0.0.0:"+strconv.Itoa(port), nil)
if err != nil {
log.Println("启动普罗米修斯失败:", err)
}
log.Println("启动普罗米修斯成功 port:" + strconv.Itoa(port))
}()
}