91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

golang開發如何安裝go-torch火焰圖

發布時間:2021-11-16 13:28:45 來源:億速云 閱讀:262 作者:小新 欄目:開發技術

小編給大家分享一下golang開發如何安裝go-torch火焰圖,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

安裝

    1、 安裝go-torch

            go get github.com/uber/go-torch  

    2、安裝FlameGraph

            cd $GOPATH && git clone  https://github.com/brendangregg/FlameGraph.git

      export PATH=$PATH:$GOPATH/FlameGraph

【這步一定要設置,生成火焰圖時會用到】

    3、安裝graphviz (CentOS, Redhat) 

      yum install graphviz

在程序的包含mian函數的文件中添加相應代碼

使用

package main
import ( 
"net/http" 
"net/http/pprof" 
) 
func main() { 
// 主函數中添加
go func(){ 
http.HandleFunc("/debug/pprof/block", pprof.Index) 
http.HandleFunc("/debug/pprof/goroutine", pprof.Index) 
http.HandleFunc("/debug/pprof/heap", pprof.Index) 
http.ListenAndServe("0.0.0.0:8888", nil) //注意此處,遇到錯誤 
}() 
//你的代碼 
}

然后壓測的時候,在go 的bin目錄下找到go-torch,去運行,會把緩存的數據輸出到文件中

./go-torch -u http://localhost:8080/debug/pprof/ -p > profile-local.svg 
./go-torch -u http://localhost:8080/debug/pprof/heap -p > heap-local.svg

golang開發如何安裝go-torch火焰圖

另一種自定義顯示方式

代碼修改

import "net/http"
import _ "net/http/pprof"
func main() {
    // 主函數中添加
    go func() {
		http.HandleFunc("/program/html", htmlHandler) // 用來查看自定義的內容
		log.Println(http.ListenAndServe("0.0.0.0:8080", nil))
	}()
}

使用

# 用 -u 分析CPU使用情況
./go-torch -u http://127.0.0.1:8080
# 用 -alloc_space 來分析內存的臨時分配情況
./go-torch -alloc_space http://127.0.0.1:8080/debug/pprof/heap --colors=mem
# 用 -inuse_space 來分析程序常駐內存的占用情況;
./go-torch -inuse_space http://127.0.0.1:8080/debug/pprof/heap --colors=mem
# 畫出內存分配圖
go tool pprof -alloc_space -cum -svg http://127.0.0.1:8080/debug/pprof/heap > heap.svg

查看

使用瀏覽器查看svg文件,程序運行中,可以登錄 http://127.0.0.1:10086/debug/pprof/ 查看程序實時狀態 在此基礎上,可以通過配置handle來實現自定義的內容查看,可以添加Html格式的輸出,優化顯示效果

func writeBuf(buffer *bytes.Buffer, format string, a ...interface{}) {
	(*buffer).WriteString(fmt.Sprintf(format, a...))
}
func htmlHandler(w http.ResponseWriter, req *http.Request) {
	io.WriteString(w, statusHtml())
}
// 訪問 localhost:8080/program/html 可以看到一個表格,一秒鐘刷新一次
func statusHtml() string {
	var buf bytes.Buffer
	buf.WriteString("<html><meta http-equiv=\"refresh\" content=\"1\">" +
		"<body><h3>netflow-decoder status count</h3>" +
		"<table width=\"500px\" border=\"1\" cellpadding=\"5\" cellspacing=\"1\">" +
		"<tr><th>NAME</th><th>TOTAL</th><th>SPEED</th></tr>")
	writeBuf(&buf, "<tr><td>UDP</td><td>%d</td><td>%d</td></tr>",
		lastRecord.RecvUDP, currSpeed.RecvUDP)	
	writeBuf(&buf, "</table><p>Count time: %s</p><p>Time now: %s</p>",
		countTime.Format("2006-01-02 15:04:05"), time.Now().Format("2006-01-02 15:04:05"))
	buf.WriteString("</body></html>")
	return buf.String()
}

看完了這篇文章,相信你對“golang開發如何安裝go-torch火焰圖”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節
推薦閱讀:
  1. golang安裝
  2. mac 安裝golang

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

汕头市| 莆田市| 和政县| 洞头县| 保康县| 华阴市| 门源| 黑龙江省| 浙江省| 浦东新区| 大石桥市| 双鸭山市| 循化| 白朗县| 武平县| 潞城市| 安龙县| 龙南县| 凤庆县| 南宁市| 江城| 安陆市| 略阳县| 湖口县| 岳阳县| 达日县| 抚松县| 邹城市| 临潭县| 祁连县| 临夏县| 阆中市| 县级市| 家居| 迁西县| 喀什市| 双桥区| 龙南县| 永济市| 平凉市| 大悟县|