性能监控
已收录文章:2篇
-
如何分析程序运行所需时间及cpu的使用率? 使用shell内置的time指令 最常见的方式便是linux中内置的time指令,通过time go run '你的程序.go'即可。 $ time go run test.go real 0m0.802s user 0m0.320s sys 0m0278 收藏
-
性能监控 一、web项目(如gin中) 1.使用ginpprof import "github.com/DeanThompson/ginpprof" router := gin.Default() ginpprof.Wrap(router) 2.使用pprof 只需要在main.go中引入:_ “net/http/pprof” 访问:127.0.0.1:8080/debug188 收藏