当前位置: 首页 > news >正文

Go expvar包

介绍与使用


expvar 是 exposed variable的简写

expvar包[1]是 Golang 官方为暴露Go应用内部指标数据所提供的标准对外接口,可以辅助获取和调试全局变量。

其通过init函数将内置的expvarHandler(一个标准http HandlerFunc)注册到http包ListenAndServe创建的默认Server上


如以下案例:

package main

import (
 "encoding/json"
 "expvar"
 "fmt"
 "github.com/gin-gonic/gin"
 "net/http"
 "runtime"
 "time"
)

func main() {
 router := gin.Default() //初始化一个gin实例

 router.GET("/debug/vars", GetCurrentRunningStats) //接口路由,如果url不是/debug/vars,则用metricBeat去获取会出问题
 s := &http.Server{
  Addr:           ":" + "6666",
  Handler:        router,
  ReadTimeout:    5 * time.Second,
  WriteTimeout:   5 * time.Second,
  MaxHeaderBytes: 1 << 20,
 }

 s.ListenAndServe() //开始监听
}

var CuMemoryPtr *map[string]string
var BTCMemoryPtr *map[string]interface{}

// 开始时间
var start = time.Now()

// calculateUptime 计算运行时间
func calculateUptime() interface{} {
 return time.Since(start).String()
}

// currentGoVersion 当前 Golang 版本
func currentGoVersion() interface{} {
 return runtime.Version()
}

// getNumCPUs 获取 CPU 核心数量
func getNumCPUs() interface{} {
 return runtime.NumCPU()
}

// getGoOS 当前系统类型
func getGoOS() interface{} {
 return runtime.GOOS
}

// getNumGoroutins 当前 goroutine 数量
func getNumGoroutins() interface{} {
 return runtime.NumGoroutine()
}

// getNumCgoCall CGo 调用次数
func getNumCgoCall() interface{} {
 return runtime.NumCgoCall()
}

// 业务特定的内存数据
func getCuMemoryMap() interface{} {
 if CuMemoryPtr == nil {
  return 0
 } else {
  return len(*CuMemoryPtr)
 }
}

// 业务特定的内存数据
func getBTCMemoryMap() interface{} {
 if BTCMemoryPtr == nil {
  return 0
 } else {
  return len(*BTCMemoryPtr)
 }
}

var lastPause uint32

// getLastGCPauseTime 获取上次 GC 的暂停时间
func getLastGCPauseTime() interface{} {
 var gcPause uint64
 ms := new(runtime.MemStats)

 statString := expvar.Get("memstats").String()
 if statString != "" {
  json.Unmarshal([]byte(statString), ms)

  if lastPause == 0 || lastPause != ms.NumGC {
   gcPause = ms.PauseNs[(ms.NumGC+255)%256]
   lastPause = ms.NumGC
  }
 }

 return gcPause
}

// GetCurrentRunningStats 返回当前运行信息
func GetCurrentRunningStats(c *gin.Context) {
 c.Writer.Header().Set("Content-Type""application/json; charset=utf-8")

 first := true
 report := func(key string, value interface{}) {
  if !first {
   fmt.Fprintf(c.Writer, ",\n")
  }
  first = false
  if str, ok := value.(string); ok {
   fmt.Fprintf(c.Writer, "%q: %q", key, str)
  } else {
   fmt.Fprintf(c.Writer, "%q: %v", key, value)
  }
 }

 fmt.Fprintf(c.Writer, "{\n")
 expvar.Do(func(kv expvar.KeyValue) {
  report(kv.Key, kv.Value)
 })
 fmt.Fprintf(c.Writer, "\n}\n")

 c.String(http.StatusOK, "")
}

func init() { //这些都是自定义变量,发布到expvar中,每次请求接口,expvar会自动去获取这些变量,并返回
 expvar.Publish("运行时间", expvar.Func(calculateUptime))
 expvar.Publish("version", expvar.Func(currentGoVersion))
 expvar.Publish("cores", expvar.Func(getNumCPUs))
 expvar.Publish("os", expvar.Func(getGoOS))
 expvar.Publish("cgo", expvar.Func(getNumCgoCall))
 expvar.Publish("goroutine", expvar.Func(getNumGoroutins))
 expvar.Publish("gcpause", expvar.Func(getLastGCPauseTime))
 expvar.Publish("CuMemory", expvar.Func(getCuMemoryMap))
 expvar.Publish("BTCMemory", expvar.Func(getBTCMemoryMap))
}

运行程序,并请求127.0.0.1:6666/debug/vars

alt
结果如下:
{
    "BTCMemory"0,
    "CuMemory"0,
    "cgo"1,
    "cmdline": [
        "/var/folders/9t/839s3jmj73bcgyp5x_xh3gw00000gn/T/go-build1753052226/b001/exe/1"
    ],
    "cores"8,
    "gcpause"0,
    "goroutine"3,
    "memstats": {
        "Alloc"1516104,
        "TotalAlloc"1516104,
        "Sys"71961616,
        "Lookups"0,
        "Mallocs"12075,
        "Frees"1237,
        "HeapAlloc"1516104,
        "HeapSys"66650112,
        "HeapIdle"63930368,
        "HeapInuse"2719744,
        "HeapReleased"63930368,
        "HeapObjects"10838,
        "StackInuse"458752,
        "StackSys"458752,
        "MSpanInuse"46376,
        "MSpanSys"49152,
        "MCacheInuse"9600,
        "MCacheSys"16384,
        "BuckHashSys"4156,
        "GCSys"4227128,
        "OtherSys"555932,
        "NextGC"4473924,
        "LastGC"0,
        "PauseTotalNs"0,
        "PauseNs": [
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0
        ],
        "PauseEnd": [
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0
        ],
        "NumGC"0,
        "NumForcedGC"0,
        "GCCPUFraction"0,
        "EnableGC"true,
        "DebugGC"false,
        "BySize": [
            {
                "Size"0,
                "Mallocs"0,
                "Frees"0
            },
            {
                "Size"8,
                "Mallocs"251,
                "Frees"0
            },
            {
                "Size"16,
                "Mallocs"4258,
                "Frees"0
            },
            {
                "Size"24,
                "Mallocs"490,
                "Frees"0
            },
            {
                "Size"32,
                "Mallocs"1194,
                "Frees"0
            },
            {
                "Size"48,
                "Mallocs"745,
                "Frees"0
            },
            {
                "Size"64,
                "Mallocs"572,
                "Frees"0
            },
            {
                "Size"80,
                "Mallocs"72,
                "Frees"0
            },
            {
                "Size"96,
                "Mallocs"84,
                "Frees"0
            },
            {
                "Size"112,
                "Mallocs"2268,
                "Frees"0
            },
            {
                "Size"128,
                "Mallocs"79,
                "Frees"0
            },
            {
                "Size"144,
                "Mallocs"19,
                "Frees"0
            },
            {
                "Size"160,
                "Mallocs"164,
                "Frees"0
            },
            {
                "Size"176,
                "Mallocs"11,
                "Frees"0
            },
            {
                "Size"192,
                "Mallocs"16,
                "Frees"0
            },
            {
                "Size"208,
                "Mallocs"73,
                "Frees"0
            },
            {
                "Size"224,
                "Mallocs"5,
                "Frees"0
            },
            {
                "Size"240,
                "Mallocs"4,
                "Frees"0
            },
            {
                "Size"256,
                "Mallocs"30,
                "Frees"0
            },
            {
                "Size"288,
                "Mallocs"28,
                "Frees"0
            },
            {
                "Size"320,
                "Mallocs"50,
                "Frees"0
            },
            {
                "Size"352,
                "Mallocs"11,
                "Frees"0
            },
            {
                "Size"384,
                "Mallocs"30,
                "Frees"0
            },
            {
                "Size"416,
                "Mallocs"25,
                "Frees"0
            },
            {
                "Size"448,
                "Mallocs"3,
                "Frees"0
            },
            {
                "Size"480,
                "Mallocs"0,
                "Frees"0
            },
            {
                "Size"512,
                "Mallocs"9,
                "Frees"0
            },
            {
                "Size"576,
                "Mallocs"18,
                "Frees"0
            },
            {
                "Size"640,
                "Mallocs"57,
                "Frees"0
            },
            {
                "Size"704,
                "Mallocs"8,
                "Frees"0
            },
            {
                "Size"768,
                "Mallocs"1,
                "Frees"0
            },
            {
                "Size"896,
                "Mallocs"19,
                "Frees"0
            },
            {
                "Size"1024,
                "Mallocs"26,
                "Frees"0
            },
            {
                "Size"1152,
                "Mallocs"23,
                "Frees"0
            },
            {
                "Size"1280,
                "Mallocs"36,
                "Frees"0
            },
            {
                "Size"1408,
                "Mallocs"1,
                "Frees"0
            },
            {
                "Size"1536,
                "Mallocs"3,
                "Frees"0
            },
            {
                "Size"1792,
                "Mallocs"22,
                "Frees"0
            },
            {
                "Size"2048,
                "Mallocs"7,
                "Frees"0
            },
            {
                "Size"2304,
                "Mallocs"3,
                "Frees"0
            },
            {
                "Size"2688,
                "Mallocs"38,
                "Frees"0
            },
            {
                "Size"3072,
                "Mallocs"6,
                "Frees"0
            },
            {
                "Size"3200,
                "Mallocs"2,
                "Frees"0
            },
            {
                "Size"3456,
                "Mallocs"3,
                "Frees"0
            },
            {
                "Size"4096,
                "Mallocs"20,
                "Frees"0
            },
            {
                "Size"4864,
                "Mallocs"2,
                "Frees"0
            },
            {
                "Size"5376,
                "Mallocs"15,
                "Frees"0
            },
            {
                "Size"6144,
                "Mallocs"6,
                "Frees"0
            },
            {
                "Size"6528,
                "Mallocs"1,
                "Frees"0
            },
            {
                "Size"6784,
                "Mallocs"2,
                "Frees"0
            },
            {
                "Size"6912,
                "Mallocs"0,
                "Frees"0
            },
            {
                "Size"8192,
                "Mallocs"3,
                "Frees"0
            },
            {
                "Size"9472,
                "Mallocs"2,
                "Frees"0
            },
            {
                "Size"9728,
                "Mallocs"3,
                "Frees"0
            },
            {
                "Size"10240,
                "Mallocs"8,
                "Frees"0
            },
            {
                "Size"10880,
                "Mallocs"8,
                "Frees"0
            },
            {
                "Size"12288,
                "Mallocs"0,
                "Frees"0
            },
            {
                "Size"13568,
                "Mallocs"0,
                "Frees"0
            },
            {
                "Size"14336,
                "Mallocs"0,
                "Frees"0
            },
            {
                "Size"16384,
                "Mallocs"0,
                "Frees"0
            },
            {
                "Size"18432,
                "Mallocs"1,
                "Frees"0
            }
        ]
    },
    "os""darwin",
    "version""go1.16.7",
    "运行时间""30.037286084s"
}

其中,expvar包会默认携带memstats,该字段内含 各种内存堆栈以及GC的一些信息,具体可见源码注释

src/runtime/mstats.go

src/runtime/mstats.go[2]

// A MemStats records statistics about the memory allocator.
type MemStats struct {
 // General statistics.

 // Alloc is bytes of allocated heap objects.
 //
 // This is the same as HeapAlloc (see below).
 Alloc uint64

 // TotalAlloc is cumulative bytes allocated for heap objects.
 //
 // TotalAlloc increases as heap objects are allocated, but
 // unlike Alloc and HeapAlloc, it does not decrease when
 // objects are freed.
 TotalAlloc uint64

 // Sys is the total bytes of memory obtained from the OS.
 //
 // Sys is the sum of the XSys fields below. Sys measures the
 // virtual address space reserved by the Go runtime for the
 // heap, stacks, and other internal data structures. It's
 // likely that not all of the virtual address space is backed
 // by physical memory at any given moment, though in general
 // it all was at some point.
 Sys uint64

 // Lookups is the number of pointer lookups performed by the
 // runtime.
 //
 // This is primarily useful for debugging runtime internals.
 Lookups uint64

 // Mallocs is the cumulative count of heap objects allocated.
 // The number of live objects is Mallocs - Frees.
 Mallocs uint64

 // Frees is the cumulative count of heap objects freed.
 Frees uint64

 // Heap memory statistics.
 //
 // Interpreting the heap statistics requires some knowledge of
 // how Go organizes memory. Go divides the virtual address
 // space of the heap into "spans", which are contiguous
 // regions of memory 8K or larger. A span may be in one of
 // three states:
 //
 // An "idle" span contains no objects or other data. The
 // physical memory backing an idle span can be released back
 // to the OS (but the virtual address space never is), or it
 // can be converted into an "in use" or "stack" span.
 //
 // An "in use" span contains at least one heap object and may
 // have free space available to allocate more heap objects.
 //
 // A "stack" span is used for goroutine stacks. Stack spans
 // are not considered part of the heap. A span can change
 // between heap and stack memory; it is never used for both
 // simultaneously.

 // HeapAlloc is bytes of allocated heap objects.
 //
 // "Allocated" heap objects include all reachable objects, as
 // well as unreachable objects that the garbage collector has
 // not yet freed. Specifically, HeapAlloc increases as heap
 // objects are allocated and decreases as the heap is swept
 // and unreachable objects are freed. Sweeping occurs
 // incrementally between GC cycles, so these two processes
 // occur simultaneously, and as a result HeapAlloc tends to
 // change smoothly (in contrast with the sawtooth that is
 // typical of stop-the-world garbage collectors).
 HeapAlloc uint64

 // HeapSys is bytes of heap memory obtained from the OS.
 //
 // HeapSys measures the amount of virtual address space
 // reserved for the heap. This includes virtual address space
 // that has been reserved but not yet used, which consumes no
 // physical memory, but tends to be small, as well as virtual
 // address space for which the physical memory has been
 // returned to the OS after it became unused (see HeapReleased
 // for a measure of the latter).
 //
 // HeapSys estimates the largest size the heap has had.
 HeapSys uint64

 // HeapIdle is bytes in idle (unused) spans.
 //
 // Idle spans have no objects in them. These spans could be
 // (and may already have been) returned to the OS, or they can
 // be reused for heap allocations, or they can be reused as
 // stack memory.
 //
 // HeapIdle minus HeapReleased estimates the amount of memory
 // that could be returned to the OS, but is being retained by
 // the runtime so it can grow the heap without requesting more
 // memory from the OS. If this difference is significantly
 // larger than the heap size, it indicates there was a recent
 // transient spike in live heap size.
 HeapIdle uint64

 // HeapInuse is bytes in in-use spans.
 //
 // In-use spans have at least one object in them. These spans
 // can only be used for other objects of roughly the same
 // size.
 //
 // HeapInuse minus HeapAlloc estimates the amount of memory
 // that has been dedicated to particular size classes, but is
 // not currently being used. This is an upper bound on
 // fragmentation, but in general this memory can be reused
 // efficiently.
 HeapInuse uint64

 // HeapReleased is bytes of physical memory returned to the OS.
 //
 // This counts heap memory from idle spans that was returned
 // to the OS and has not yet been reacquired for the heap.
 HeapReleased uint64

 // HeapObjects is the number of allocated heap objects.
 //
 // Like HeapAlloc, this increases as objects are allocated and
 // decreases as the heap is swept and unreachable objects are
 // freed.
 HeapObjects uint64

 // Stack memory statistics.
 //
 // Stacks are not considered part of the heap, but the runtime
 // can reuse a span of heap memory for stack memory, and
 // vice-versa.

 // StackInuse is bytes in stack spans.
 //
 // In-use stack spans have at least one stack in them. These
 // spans can only be used for other stacks of the same size.
 //
 // There is no StackIdle because unused stack spans are
 // returned to the heap (and hence counted toward HeapIdle).
 StackInuse uint64

 // StackSys is bytes of stack memory obtained from the OS.
 //
 // StackSys is StackInuse, plus any memory obtained directly
 // from the OS for OS thread stacks (which should be minimal).
 StackSys uint64

 // Off-heap memory statistics.
 //
 // The following statistics measure runtime-internal
 // structures that are not allocated from heap memory (usually
 // because they are part of implementing the heap). Unlike
 // heap or stack memory, any memory allocated to these
 // structures is dedicated to these structures.
 //
 // These are primarily useful for debugging runtime memory
 // overheads.

 // MSpanInuse is bytes of allocated mspan structures.
 MSpanInuse uint64

 // MSpanSys is bytes of memory obtained from the OS for mspan
 // structures.
 MSpanSys uint64

 // MCacheInuse is bytes of allocated mcache structures.
 MCacheInuse uint64

 // MCacheSys is bytes of memory obtained from the OS for
 // mcache structures.
 MCacheSys uint64

 // BuckHashSys is bytes of memory in profiling bucket hash tables.
 BuckHashSys uint64

 // GCSys is bytes of memory in garbage collection metadata.
 GCSys uint64

 // OtherSys is bytes of memory in miscellaneous off-heap
 // runtime allocations.
 OtherSys uint64

 // Garbage collector statistics.

 // NextGC is the target heap size of the next GC cycle.
 //
 // The garbage collector's goal is to keep HeapAlloc ≤ NextGC.
 // At the end of each GC cycle, the target for the next cycle
 // is computed based on the amount of reachable data and the
 // value of GOGC.
 NextGC uint64

 // LastGC is the time the last garbage collection finished, as
 // nanoseconds since 1970 (the UNIX epoch).
 LastGC uint64

 // PauseTotalNs is the cumulative nanoseconds in GC
 // stop-the-world pauses since the program started.
 //
 // During a stop-the-world pause, all goroutines are paused
 // and only the garbage collector can run.
 PauseTotalNs uint64

 // PauseNs is a circular buffer of recent GC stop-the-world
 // pause times in nanoseconds.
 //
 // The most recent pause is at PauseNs[(NumGC+255)%256]. In
 // general, PauseNs[N%256] records the time paused in the most
 // recent N%256th GC cycle. There may be multiple pauses per
 // GC cycle; this is the sum of all pauses during a cycle.
 PauseNs [256]uint64

 // PauseEnd is a circular buffer of recent GC pause end times,
 // as nanoseconds since 1970 (the UNIX epoch).
 //
 // This buffer is filled the same way as PauseNs. There may be
 // multiple pauses per GC cycle; this records the end of the
 // last pause in a cycle.
 PauseEnd [256]uint64

 // NumGC is the number of completed GC cycles.
 NumGC uint32

 // NumForcedGC is the number of GC cycles that were forced by
 // the application calling the GC function.
 NumForcedGC uint32

 // GCCPUFraction is the fraction of this program's available
 // CPU time used by the GC since the program started.
 //
 // GCCPUFraction is expressed as a number between 0 and 1,
 // where 0 means GC has consumed none of this program's CPU. A
 // program's available CPU time is defined as the integral of
 // GOMAXPROCS since the program started. That is, if
 // GOMAXPROCS is 2 and a program has been running for 10
 // seconds, its "available CPU" is 20 seconds. GCCPUFraction
 // does not include CPU time used for write barrier activity.
 //
 // This is the same as the fraction of CPU reported by
 // GODEBUG=gctrace=1.
 GCCPUFraction float64

 // EnableGC indicates that GC is enabled. It is always true,
 // even if GOGC=off.
 EnableGC bool

 // DebugGC is currently unused.
 DebugGC bool

 // BySize reports per-size class allocation statistics.
 //
 // BySize[N] gives statistics for allocations of size S where
 // BySize[N-1].Size < S ≤ BySize[N].Size.
 //
 // This does not report allocations larger than BySize[60].Size.
 BySize [61]struct {
  // Size is the maximum byte size of an object in this
  // size class.
  Size uint32

  // Mallocs is the cumulative count of heap objects
  // allocated in this size class. The cumulative bytes
  // of allocation is Size*Mallocs. The number of live
  // objects in this size class is Mallocs - Frees.
  Mallocs uint64

  // Frees is the cumulative count of heap objects freed
  // in this size class.
  Frees uint64
 }
}

对于各个字段的意义 可参考:

1、Alloc uint64 //Go语言框架 堆空间分配的字节数
2、TotalAlloc uint64 //从服务开始运行至今分配器为分配的堆空间总和,只增加,释放时不减少
3、Sys uint64 //服务现在使用的系统内存
4、Lookups uint64 //被runtime监视的指针数
5、Mallocs uint64 //服务malloc的次数
6、Frees uint64 //服务回收的heap objects的字节数
7、HeapAlloc uint64 //服务分配的堆内存字节数
8、HeapSys uint64 //系统分配的作为运行栈的内存
9、HeapIdle uint64 //申请但未分配的堆内存或者回收了的堆内存(空闲)字节数
10、HeapInuse uint64 //正在使用的堆内存字节数
10、HeapReleased uint64 //返回给OS的堆内存,类似C/C++中的free
11、HeapObjects uint64 //堆内存块申请的量
12、StackInuse uint64 //正在使用的栈字节数
13、StackSys uint64 //系统分配的作为运行栈的内存
14、MSpanInuse uint64 //用于测试用的结构体使用的字节数
15、MSpanSys uint64 //系统为测试用的结构体分配的字节数
16、MCacheInuse uint64 //mcache结构体申请的字节数(不会被视为垃圾回收)
17、MCacheSys uint64 //操作系统申请的堆空间用于mcache的字节数
18、BuckHashSys uint64 //用于剖析桶散列表的堆空间
19、GCSys uint64 //垃圾回收标记元信息使用的内存
20、OtherSys uint64 //golang系统架构占用的额外空间
21、NextGC uint64 //垃圾回收器检视的内存大小
22、LastGC uint64 // 垃圾回收器最后一次执行时间。
23、PauseTotalNs uint64 // 垃圾回收或者其他信息收集导致服务暂停的次数。
24、PauseNs [256]uint64 //一个循环队列,记录最近垃圾回收系统中断的时间
25、PauseEnd [256]uint64 //一个循环队列,记录最近垃圾回收系统中断的时间开始点。
26、NumForcedGC uint32 //服务调用runtime.GC()强制使用垃圾回收的次数。
27、GCCPUFraction float64 //垃圾回收占用服务CPU工作的时间总和。如果有100个goroutine,垃圾回收的时间为1S,那么就占用了100S。
28、BySize //内存分配器使用情况

以上参考golang程序的监控神器----expvar[3]


社区同行开发的expvarmon[4]工具,可以在命令行终端以图形化的方式实时展示特定的指标数据的变化,(expvarmon 即expvar monitor)

go get github.com/divan/expvarmon

启动刚才的程序,然后执行如下命令,可实时查看应用指标变化 (期间可以进行不同qps的请求)

expvarmon -ports="http://localhost:6666/debug/vars" -i 1s

alt

参考 给expvarmon插上数据持久化的“翅膀”[5]




官方库或知名项目中的使用


src/net/http/triv.go[6] 中使用了这个包

另外 golang.org/x/tools@v0.1.6/cmd/godoc/main.go

golang.org/x/tools@v0.1.6/go/internal/gccgoimporter/gccgoinstallation_test.go

go/test/bench/garbage/parser.go

也有使用


以及前面提到的expvarmon[7]

参考资料

[1]

expvar包: https://gitee.com/cuishuang/go1.16/tree/master/src/expvar

[2]

src/runtime/mstats.go: https://gitee.com/cuishuang/go1.16/blob/master/src/runtime/mstats.go#L107

[3]

golang程序的监控神器----expvar: https://blog.csdn.net/jeffrey11223/article/details/78886923/

[4]

expvarmon: https://github.com/divan/expvarmon

[5]

给expvarmon插上数据持久化的“翅膀”: https://tonybai.com/2021/04/14/expvarmon-save-and-convert-to-xlsx/

[6]

src/net/http/triv.go: https://gitee.com/cuishuang/go1.16/blob/master/src/net/http/triv.go

[7]

expvarmon: https://github.com/divan/expvarmon

本文由 mdnice 多平台发布

相关文章:

Go expvar包

介绍与使用 expvar 是 exposed variable的简写 expvar包[1]是 Golang 官方为暴露Go应用内部指标数据所提供的标准对外接口&#xff0c;可以辅助获取和调试全局变量。 其通过init函数将内置的expvarHandler(一个标准http HandlerFunc)注册到http包ListenAndServe创建的默认Serve…...

Yolo v8代码逐行解读

train.py文件 1.FILE Path(__file__).resolve() __file__代表的是train.py文件&#xff0c;Path(__file__).resolve()结果是train.py文件的绝对路径。 2.ROOT FILE.parents[0] 获得train.py父目录的绝对路径 3.sys.path 是一个列表list&#xff0c;里面包含了已经添加到系…...

9.18号作业

完善登录框 点击登录按钮后&#xff0c;判断账号&#xff08;admin&#xff09;和密码&#xff08;123456&#xff09;是否一致&#xff0c;如果匹配失败&#xff0c;则弹出错误对话框&#xff0c;文本内容“账号密码不匹配&#xff0c;是否重新登录”&#xff0c;给定两个按钮…...

Spring源码阅读(spring-framework-5.2.24)

spring-aop spring-aspects spring-beans spring-context 等等 第一步&#xff1a; Tags spring-projects/spring-framework GitHub 找到相应的release版本 第二步&#xff1a; 下载相应版本的gardle&#xff0c;如何看版本 spring-framework/gradle/wrapper /gradl…...

【SpringMVC】文件上传与下载、JREBEL使用

目录 一、引言 二、文件的上传 1、单文件上传 1.1、数据表准备 1.2、添加依赖 1.3、配置文件 1.4、编写表单 1.5、编写controller层 2、多文件上传 2.1、编写form表单 2.2、编写controller层 2.3、测试 三、文件下载 四、JREBEL使用 1、下载注册 2、离线设置 一…...

数据结构 第二章作业 线性表 西安石油大学

在顺序表中插入和删除一个结点需平均移动多少个结点&#xff1f;具体的移动次数取决于 哪两个因素&#xff1f; 在顺序表中插入和删除一个结点时&#xff0c;平均移动的结点数量取决于两个因素&#xff1a;插入/删除位置和当前顺序表的长度。 插入/删除位置&#xff1a;如果要…...

vue.mixin全局混合选项

在Vue.js中&#xff0c;Vue.mixin 是一个用来全局混合(mixin)选项的方法。它允许你在多个组件中共享相同的选项&#xff0c;例如数据、方法、生命周期钩子等。这可以用来在组件之间重复使用一些逻辑或共享一些通用的功能 Vue.mixin({// 在这里定义混合的选项data() {return {s…...

VMware Fusion 13+Ubuntu ARM Server 22.04.3在M2芯片的Mac上共享文件夹

因为Server版没有桌面&#xff0c;VMware Tools不能直接装&#xff0c;导致没办法共享文件。 Ubuntu中的包如果需要更新&#xff0c;先执行下面的步骤 sudo apt update 再执行 sudo apt upgrade 不需要更新的话&#xff0c;直接执行下面的步骤 先把open-vm-tools卸载了 …...

PostgreSQL serial类型

serial类型和序列 postgresql序列号&#xff08;SERIAL&#xff09;类型包括 smallserial&#xff08;smallint,short&#xff09;,serial(int)bigserial(bigint,long long int) 不管是smallserial,serial还是bigserial&#xff0c;其范围都是(1,9223372036854775807)&#…...

[创业之路-76] - 创业公司如何在长期坚持中顺势而为?诚迈科技参观交流有感

目录 一、创业环境 1.1. VUCA乌卡时代&#xff1a;易变、复杂、不确定性、模糊的时代 1.2. 中国用了四十年的时间完成了三次工业革命&#xff1a;机械化、电气化、数字化 1.3. 中国正在经历着第四次工业革命&#xff1a;智能化、生态化、拟人化 1.4 国产替代&#xff1a;国…...

人脸修复祛马赛克算法CodeFormer——C++与Python模型部署

一、人脸修复算法 1.算法简介 CodeFormer是一种基于AI技术深度学习的人脸复原模型&#xff0c;由南洋理工大学和商汤科技联合研究中心联合开发&#xff0c;它能够接收模糊或马赛克图像作为输入&#xff0c;并生成更清晰的原始图像。算法源码地址&#xff1a;https://github.c…...

linux入门到精通-第三章-vi(vim)编辑器

目录 文本编辑器gedit介绍vi(vim)命令模式命令模式编辑模式末行模式 帮助教程保存文件切换到编辑模式光标移动(命令模式下)复制粘贴删除撤销恢复保存退出查找替换可视模式替换模式分屏其他用法配置文件 文本编辑器 gedit介绍 gedit是一个GNOME桌面环境下兼容UTF-8的文本编辑器…...

Mybatis面试题(三)

文章目录 前言一、Xml 映射文件中&#xff0c;除了常见的 select|insert|updae|delete 标签之外&#xff0c;还有哪些标签&#xff1f;二、当实体类中的属性名和表中的字段名不一样&#xff0c;如果将查询的结果封装到指定 pojo&#xff1f;三、模糊查询 like 语句该怎么写四、…...

Qt扩展-KDDockWidgets 简介及配置

Qt扩展-KDDockWidgets 简介及配置] 一、概述二、编译 KDDockWidgets 库1. Cmake Gui 中选择源文件和编译后的路径2. 点击Config&#xff0c;配置好编译器3. 点击Generate4. 在存放编译的文件夹输入如下命令开始编译 三、qmake 配置 一、概述 kdockwidgets是一个由KDAB组织编写…...

Vue3搭配Element Plus 实现候选搜索框效果

直接上代码 <el-col :span"14" class"ipt-col"><el-input v-model"projectName" class"w-50 m-2" input"inputChange" focus"inputFocusFn" blur"inputBlurFn" placeholder"请输入项目名…...

进程间的通信方式

文章目录 1.简单介绍2.管道2.1管道的基础概念**管道读写规则**:**管道特点** 2.2匿名管道匿名管道父子进程间通信的经典案例&#xff1a; 2.3命名管道基本概念:命名管道的创建&#xff1a;命名管道的打开规则&#xff1a;匿名管道与普通管道的区别**例子&#xff1a;用命名管道…...

分类预测 | Matlab实现基于MIC-BP-Adaboost最大互信息系数数据特征选择算法结合Adaboost-BP神经网络的数据分类预测

分类预测 | Matlab实现基于MIC-BP-Adaboost最大互信息系数数据特征选择算法结合Adaboost-BP神经网络的数据分类预测 目录 分类预测 | Matlab实现基于MIC-BP-Adaboost最大互信息系数数据特征选择算法结合Adaboost-BP神经网络的数据分类预测效果一览基本介绍研究内容程序设计参考…...

phpcms v9对联广告关闭左侧广告

修改目录“\caches\poster_js”下的文件“53.js”&#xff0c;修改函数“showADContent()” 将代码&#xff1a; str "<div idPCMSAD_"this.PosID"_"i" style"align_b":"x"px;top:"y"px;width:"this.Width&…...

7.2.4 【MySQL】匹配范围值

回头看我们 idx_name_birthday_phone_number 索引的 B 树示意图&#xff0c;所有记录都是按照索引列的值从小到大的顺序排好序的&#xff0c;所以这极大的方便我们查找索引列的值在某个范围内的记录。比方说下边这个查询语句&#xff1a; SELECT * FROM person_info WHERE nam…...

1400*C. No Prime Differences(找规律数学)

解析&#xff1a; 由于 1 不是质数&#xff0c;所以我们令每一行的数都相差 1 对于行间&#xff0c;分为 n、m之中有存在偶数和都为奇数两种情况。 如果n、m存在偶数&#xff0c;假设m为偶数。 如果都为奇数&#xff0c;则&#xff1a; #include<bits/stdc.h> using name…...

Python基础之装饰器

文章目录 1 装饰器1.1 定义1.2 使用示例1.2.1 使用类中实例装饰器1.2.2 使用类方法装饰器1.2.3 使用类中静态装饰器1.2.4 使用类中普通装饰器 1.3 内部装饰器1.3.1 property 2 常用装饰器2.1 timer:测量执行时间2.2 memoize:缓存结果2.3 validate_input:数据验证2.4 log_result…...

IDEA设置Maven 镜像

第一步&#xff1a;右键项目&#xff0c;选择Maven->Create ‘settings.xml’ 已经存在的话是Open ‘settings.xml’&#xff1a; 第二步&#xff1a;在settings.xml文件中增加阿里云镜像地址&#xff0c;代码如下&#xff1a; <?xml version"1.0" encodin…...

项目评定等级L1、L2、L3、L4

软件项目评定等级的数量可以因不同的评定体系和标准而异。一般情况下&#xff0c;项目评定等级通常按照项目的规模、复杂性和风险等因素来划分&#xff0c;可以有多个等级&#xff0c;常见的包括&#xff1a; L1&#xff08;Level 1&#xff09;&#xff1a;通常表示较小规模、…...

一个基于SpringBoot+Vue前后端分离学生宿舍管理系统详细设计实现

博主介绍&#xff1a;✌全网粉丝30W,csdn特邀作者、博客专家、CSDN新星计划导师、Java领域优质创作者,博客之星、掘金/华为云/阿里云/InfoQ等平台优质作者、专注于Java技术领域和毕业项目实战✌ &#x1f345;文末获取源码联系&#x1f345; &#x1f447;&#x1f3fb; 精彩专…...

工作相关----《配置bond》

进入到/etc/sysconfig/network-scripts&#xff0c;按照要求配置主备关系 vim ifcfg-bond0&#xff0c;编写主要内容如下&#xff1a; /*mode1 表示主备份策略&#xff0c;miimon100 系统每100毫秒监测一次链路连接状态&#xff0c; 如果有一条线路不通就转入另一条线路*/ BOND…...

Nacos、ZooKeeper和Dubbo的区别

Nacos、ZooKeeper和Dubbo是三个不同的分布式系统组件&#xff0c;它们之间有以下几点区别&#xff1a; 功能定位&#xff1a;Nacos主要提供服务发现、配置管理和服务治理等功能&#xff0c;而ZooKeeper主要是分布式协调服务&#xff0c;提供了分布式锁、分布式队列等原语&#…...

刷一下算法

记录下自己的思路与能理解的解法,可能并不是最优解法,不定期持续更新~ 1.盛最多水的容器 给定一个长度为 n 的整数数组 height 。有 n 条垂线&#xff0c;第 i 条线的两个端点是 (i, 0) 和 (i, height[i]) 。 找出其中的两条线&#xff0c;使得它们与 x 轴共同构成的容器可以容…...

three.js——GUI的使用

GUI的使用 效果图1、导入gui2、创建一个GUI对象3、通过gui调用方法 name:按钮的名称 效果图 1、导入gui // 导入ligui import { GUI } from three/examples/jsm/libs/lil-gui.module.min.js2、创建一个GUI对象 const gui new GUI()3、通过gui调用方法 name:按钮的名称 // 创…...

LeetCode 332. Reconstruct Itinerary【欧拉回路,通路,DFS】困难

本文属于「征服LeetCode」系列文章之一&#xff0c;这一系列正式开始于2021/08/12。由于LeetCode上部分题目有锁&#xff0c;本系列将至少持续到刷完所有无锁题之日为止&#xff1b;由于LeetCode还在不断地创建新题&#xff0c;本系列的终止日期可能是永远。在这一系列刷题文章…...

236. 二叉树的最近公共祖先 Python

文章目录 一、题目描述示例 1示例 2示例 3 二、代码三、解题思路 一、题目描述 给定一个二叉树, 找到该树中两个指定节点的最近公共祖先。 百度百科中最近公共祖先的定义为&#xff1a;“对于有根树 T 的两个节点 p、q&#xff0c;最近公共祖先表示为一个节点 x&#xff0c;满…...

wordpress数据库结构/网络营销的特点是什么?

基于微信小程序的毕业设计题目&#xff08;12&#xff09;php在线教育视频点播学习小程序(含开题报告、任务书、中期报告、答辩PPT、论文模板) 项目背景和意义 目的&#xff1a;本课题主要目标是设计并能够实现一个基于微信小程序视频点播系统&#xff0c;前台用户使用小程序&a…...

属于b2b电子商务模式的平台有/seo排名优化seo

导读&#xff1a;什么样的区域对人才最具吸引力&#xff1f;广东海丝研究院推出的《广州11区人才吸引力指数报告》显示&#xff0c;广州11区中&#xff0c;天河区人才吸引力指数优势明显&#xff0c;位列第一&#xff0c;黄埔区、白云区、越秀区、南沙区紧随其后&#xff0c;海…...

开平 做一网站/seo网站编辑是做什么的

课程首页地址&#xff1a;http://blog.csdn.net/sxhelijian/article/details/7910565【项目2&#xff1a;穷举法解决组合问题】先阅读例题&#xff0c;领会穷举法&#xff08;意为“穷尽式列举”&#xff0c;也称枚举&#xff09;的思想&#xff0c;然后自行选题进行解决&#…...

扬中市做网站/免费推广产品的网站

忽然之间&#xff0c;美国食品药物管理局&#xff08;以下简称FDA&#xff09;成了AI医疗亲密无间的好朋友和坚定的支持者。 2018年上半年&#xff0c;FDA相继批准癫痫监测与警报AI手表Embrace、AI临床监测平台Wave、脑卒中护理软件Viz.ai、自闭症筛查AI软件Cognoa以及血糖预测…...

视频网站如何做盗链/威海网站制作

文章目录1 报错2 解决办法1 报错 尝试在linux上通过Pycharm IDE使用matplotlib包。当我运行此代码时&#xff1a; from matplotlib import pyplot结果报错&#xff1a; ImportError: No module named tkinter2 解决办法 ubuntu的系统&#xff1a; sudo apt-get install py…...

上海金工建设集团有限公司网站/seo外链是什么意思

简介 用于为应用添加常用的上拉加载更多与下拉刷新效果,适用 UIScrollView 、 UITableView 、 UICollectionView 、 UIWebView. 项目主页: MJRefresh 最新示例: 点击下载 快速入门 使用环境 ARCiOS 6.0 安装 通过CocoaPods安装 pod MJRefresh 手动安装 将 MJRefresh 文件夹中的…...