Back to Istio

Mem

pkg/ctrlz/topics/assets/templates/mem.html

1.29.21.9 KB
Original Source

{{ define "content" }}

This information is gathered from the Go runtime and represents the ongoing memory consumption of this process. Please refer to the Go documentation on the MemStats type for more information about all of these values.

CounterValueDescription
HeapInuse{{.HeapInuse}} bytesBytes in in-use spans.
Total Alloc{{.TotalAlloc}} bytesCumulative bytes allocated for heap objects.
Sys{{.Sys}} bytesTotal bytes of memory obtained from the OS.
Lookups{{.Lookups}} lookupsNumber of pointer lookups performed by the runtime.
Mallocs{{.Mallocs}} objectsCumulative count of heap objects allocated.
Frees{{.Frees}} objectsCumulative count of heap objects freed.
Live0 objectsCount of live heap objects.
HeapAlloc{{.HeapAlloc}} bytesAllocated heap objects.
HeapSys{{.HeapSys}} bytesHeap memory obtained from the OS.
HeapIdle{{.HeapIdle}} bytesBytes in idle (unused) spans.
HeapReleased{{.HeapReleased}} bytesPhysical memory returned to the OS.
HeapObjects{{.HeapObjects}} objectsNumber of allocated heap objects.
StackInuse{{.StackInuse}} bytesBytes in stack spans.
StackSys{{.StackSys}} bytesStack memory obtained from the OS.
NextGC{{.NextGC}} bytesTarget heap size of the next GC cycle.
LastGCThe time the last garbage collection finished.
PauseTotalNs{{.PauseTotalNs}} nsCumulative time spent in GC stop-the-world pauses.
NumGC{{.NumGC}} GC cyclesCompleted GC cycles.
NumForcedGC{{.NumForcedGC}} GC cyclesGC cycles that were forced by the application calling the GC function.
GCCPUFractionFraction of this program's available CPU time used by the GC since the program started.

Force Garbage Collection{{ template "last-refresh" .}} {{ end }}