1. ホーム
  2. スクリプト・コラム
  3. ゴラン

golang 開発 インストール go-torch フレームチャート 操作手順

2022-01-07 05:03:10

インストール

    1. go-torchのインストール

            ゲットする  github.com/uber/go-torch  

    2. FlameGraphのインストール

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

      エクスポートPATH=$PATH:$GOPATH

[このステップは必ず設定する必要があり、フレイムグラフの生成に使用されます] 。

    3. graphvizのインストール (CentOS、Redhat) 

      yum install graphviz

プログラム中のmian関数を含むファイルに適切なコードを追加します。

使用方法

pip3 install attrs==19.2.0 -i http://mirrors.aliyun.com/pypi/simple --trusted-host mirrors.aliyun.com

そして、テストを実行するときに、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

画像

表示をカスタマイズするもう一つの方法

コード修正

import "net/http"
import _ "net/http/pprof"
func main() {
    // Add to the main function
    go func() {
		http.HandleFunc("/program/html", htmlHandler) // used to view custom content
		log.Println(http.ListenAndServe("0.0.0.0:8080", nil))
	}()
}

使用方法

# Analyze CPU usage with -u
. /go-torch -u http://127.0.0.1:8080
# Use -alloc_space to analyze temporary memory allocations
. /go-torch -alloc_space http://127.0.0.1:8080/debug/pprof/heap --colors=mem
# Use -inuse_space to analyze the program's resident memory footprint.
. /go-torch -inuse_space http://127.0.0.1:8080/debug/pprof/heap --colors=mem
# Draw a memory allocation map
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())
}
// Visit localhost:8080/program/html to see a table that refreshes once a second
func statusHtml() string {
	var buf bytes.
	buf.WriteString("<html><meta http-equiv=\"refresh\" content=\"1\">" +
		"<body><h2>netflow-decoder status count</h2>" +
		"<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の開発インストールゴートーチ炎マップ操作手順、炎マップ効果オンライン多くの詳細であり、golangについての詳細はBinaryDevelopの他の関連記事に注意を払うしてください