码迷,mamicode.com
首页 > 其他好文 > 详细

Go pprof性能监控

时间:2015-06-01 23:58:10      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:

Go net/http/pprof包提供了一个在WEB项目中使用的性能监控的工具,

使用时只需要引用包:

_"net/http/pprof"

然后就可以在浏览器中访问地址:

http://localhost:port/debug/pprof/来查看性能信息。

最简单的示例:

package main

import (
    "net/http"
    _ "net/http/pprof"
)

func main() {
    http.ListenAndServe("localhost:12060", nil)
}

 

 

然后浏览器访问 :

http://localhost:12060/debug/pprof/

Go pprof性能监控

标签:

原文地址:http://www.cnblogs.com/baiyuxiong/p/4545024.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!