github.com/shogo82148/std@v1.22.1-0.20240327122250-4e474527810c/cmd/pprof/doc.go (about)

     1  // Copyright 2014 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  // PprofはGoプログラムのプロファイルを解釈して表示します。
     6  //
     7  // 基本的な使用方法:
     8  //
     9  //  go tool pprof バイナリプロファイル
    10  //
    11  // 詳細な使用方法については:
    12  //
    13  //  go tool pprof -h
    14  //
    15  // 具体例については、https://blog.golang.org/profiling-go-programsを参照してください。
    16  package main