自定义监控Go服务器运行的各项操作耗时:gosvr-monitor
简介
自定义监控条目,检测程序运行时的各个操作耗费时长
编译和运行
go get github.com/zheng-ji/gosvr-monitor
使用范例
import ( "github.com/zheng-ji/gosvr-monitor" ) func func_test() { timeStart := time.Now() defer func() { //defer 的时候统计监控, 用goroutine 使得不影响性能 go monitor.StatByAction("WRITE", timeStart) }() .... } func main() { // 初始化monitor, 自定义监控的命令,如READ,WRITE等自定义名称, 以及每次统计的阀值 // 启动监控服务 monitor.InitMonitor([]string{"WRITE", "READ"}, 1) monitor.StartMonitorServer("0.0.0.0:7070") func_test() ... }
访问
curl "http://127.0.0.1:7070/info"
输出
curl "http://127.0.0.1:7070/info" WRITE (ms):15.000000 READ (ms):3.000000
本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
转载本站原创文章,请注明出处,并保留原始链接、图片水印。
本站是一个以用户分享为主的开源技术平台,欢迎各类分享!