Golang 应用集成 Prometheus 统计数据支持
go_gc_duration_seconds_sum 0 go_gc_duration_seconds_count 0 # HELP go_goroutines Number of goroutines that currently exist. # TYPE go_goroutines gauge go_goroutines 6 # HELP go_info Information about the Go environment. # TYPE go_info gauge go_info{version="go1.12"} 1 添加自定义指标 创建指标并注册到prometheus // 初始化 web_reqeust_total, counter类型指标, 表示接收http请求总次数 var WebRequestTotal...阅读全文