Suche…


Bemerkungen

Weitere Informationen zum Erstellen von Profilen finden Sie im Go-Blog .

Grundlegendes CPU- und Speicher-Profiling

Fügen Sie den folgenden Code in Ihr Hauptprogramm ein.

var cpuprofile = flag.String("cpuprofile", "", "write cpu profile `file`")
var memprofile = flag.String("memprofile", "", "write memory profile to `file`")

func main() {
    flag.Parse()
    if *cpuprofile != "" {
        f, err := os.Create(*cpuprofile)
        if err != nil {
            log.Fatal("could not create CPU profile: ", err)
        }
        if err := pprof.StartCPUProfile(f); err != nil {
            log.Fatal("could not start CPU profile: ", err)
        }
        defer pprof.StopCPUProfile()
    }
    ...
    if *memprofile != "" {
        f, err := os.Create(*memprofile)
        if err != nil {
            log.Fatal("could not create memory profile: ", err)
        }
        runtime.GC() // get up-to-date statistics
        if err := pprof.WriteHeapProfile(f); err != nil {
            log.Fatal("could not write memory profile: ", err)
        }
        f.Close()
    }
}

go build main.go bauen Sie das go-Programm, wenn es in main go build main.go Hauptprogramm mit Flags main.exe -cpuprofile cpu.prof -memprof mem.prof die im Code main.exe -cpuprofile cpu.prof -memprof mem.prof . Wenn die Profilerstellung für Testfälle durchgeführt wird, führen Sie die Tests mit denselben Flags aus go test -cpuprofile cpu.prof -memprofile mem.prof

Grundlegendes Speicherprofil

var memprofile = flag.String("memprofile", "", "write memory profile to `file`")

func main() {
    flag.Parse()
    if *memprofile != "" {
        f, err := os.Create(*memprofile)
        if err != nil {
            log.Fatal("could not create memory profile: ", err)
        }
        runtime.GC() // get up-to-date statistics
        if err := pprof.WriteHeapProfile(f); err != nil {
            log.Fatal("could not write memory profile: ", err)
        }
        f.Close()
    }
}
go build main.go
main.exe -memprofile mem.prof
go tool pprof main.exe mem.prof

CPU / Block-Profilrate einstellen

// Sets the CPU profiling rate to hz samples per second
// If hz <= 0, SetCPUProfileRate turns off profiling
runtime.SetCPUProfileRate(hz) 

// Controls the fraction of goroutine blocking events that are reported in the blocking profile
// Rate = 1 includes every blocking event in the profile
// Rate <= 0 turns off profiling
runtime.SetBlockProfileRate(rate)

Verwenden von Benchmarks zum Erstellen eines Profils

Schreiben Sie für ein Nicht-Main-Paket sowie für Main anstelle von Flags im Code Benchmarks in das Testpaket. Beispiel:

func BenchmarkHello(b *testing.B) {
    for i := 0; i < b.N; i++ {
        fmt.Sprintf("hello")
    }
}

Führen Sie dann den Test mit der Profilmarkierung aus

go test -cpuprofile cpu.prof -bench =.

Die Benchmarks werden ausgeführt und erstellen eine Prof-Datei mit dem Dateinamen cpu.prof (im obigen Beispiel).

Zugriff auf die Profildatei

Sobald eine Prof-Datei erstellt wurde, kann mit den Tools von go auf die Prof-Datei zugegriffen werden :

go tool pprof cpu.prof

Dadurch wird eine Befehlszeilenschnittstelle zum Erkunden des profile

Allgemeine Befehle umfassen:

(pprof) top

listet die wichtigsten Prozesse im Speicher auf

(pprof) peek

Listet alle Prozesse auf. Verwenden Sie Regex, um die Suche einzugrenzen .

(pprof) web

Öffnet ein Diagramm (im SVG-Format) des Prozesses.

Ein Beispiel für den top Befehl:

69.29s of 100.84s total (68.71%)
Dropped 176 nodes (cum <= 0.50s)
Showing top 10 nodes out of 73 (cum >= 12.03s)
      flat  flat%   sum%        cum   cum%
    12.44s 12.34% 12.34%     27.87s 27.64%  runtime.mapaccess1
    10.94s 10.85% 23.19%     10.94s 10.85%  runtime.duffcopy
     9.45s  9.37% 32.56%     54.61s 54.16%  github.com/tester/test.(*Circle).Draw
     8.88s  8.81% 41.36%      8.88s  8.81%  runtime.aeshashbody
     7.90s  7.83% 49.20%     11.04s 10.95%  runtime.mapaccess1_fast64
     5.86s  5.81% 55.01%      9.59s  9.51%  github.com/tester/test.(*Circle).isCircle
     5.03s  4.99% 60.00%      8.89s  8.82%  github.com/tester/test.(*Circle).openCircle
     3.14s  3.11% 63.11%      3.14s  3.11%  runtime.aeshash64
     3.08s  3.05% 66.16%      7.85s  7.78%  runtime.mallocgc
     2.57s  2.55% 68.71%     12.03s 11.93%  runtime.memhash


Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow