Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var CpuTemp = prometheus.NewGauge(prometheus.GaugeOpts{
Name: "cpu_temperature_celsius",
Help: "Current temperature of the CPU",
})
View Source
var HdFailures = prometheus.NewCounterVec( prometheus.CounterOpts{ Name: "hd_errors_total", Help: "Number of hard-disk errors", }, []string{"device"}, )
View Source
var IsWebRequest bool //是否是web请求的监控
View Source
var WebRequestDuration = prometheus.NewHistogramVec( prometheus.HistogramOpts{ Name: "web_request_duration_seconds", Help: "web request duration distribution", Buckets: []float64{0.1, 0.3, 0.5, 0.7, 0.9, 1}, }, []string{"method", "endpoint"}, )
web_request_duration_seconds,Histogram类型指标,bucket代表duration的分布区间
View Source
var WebRequestTotal = prometheus.NewCounterVec( prometheus.CounterOpts{ Name: "web_reqeust_total", Help: "Number of hello requests in total", }, []string{"method", "endpoint"}, )
初始化 web_reqeust_total, counter类型指标, 表示接收http请求总次数
Functions ¶
func MonitorHandler ¶
MonitorHandler 性能监控处理器 可以作为中间件对接口进行打点监控
func MonitorHandlerFunc ¶
func MonitorHandlerFunc(h http.HandlerFunc) http.HandlerFunc
MonitorHandlerFunc 对于http原始的处理器函数,包装 handler function,不侵入业务逻辑 可以对单个接口做metrics监控
func PrometheusHandler ¶ added in v1.8.3
func PrometheusHandler(port int)
PrometheusHandler 监控,包含了PProf性能监控 性能监控的端口port只能在内网访问 一般在程序启动init或main函数中执行
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.