From 890f5dff40843dc48bfdc491c2fd2ae4200e8798 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Fri, 6 Mar 2020 13:01:51 -0800 Subject: [PATCH] tsweb: export runtime.MemStats var in Prometheus format --- tsweb/tsweb.go | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/tsweb/tsweb.go b/tsweb/tsweb.go index b9f8dbd99..d7b6eec23 100644 --- a/tsweb/tsweb.go +++ b/tsweb/tsweb.go @@ -10,12 +10,14 @@ import ( "expvar" _ "expvar" "fmt" + "io" "io/ioutil" "net" "net/http" _ "net/http/pprof" "os" "path/filepath" + "runtime" "strings" "time" @@ -186,7 +188,16 @@ func varzHandler(w http.ResponseWriter, r *http.Request) { } if typ == "" { - fmt.Fprintf(w, "# skipping expvar %q with undeclared Prometheus type\n", name) + var funcRet string + if f, ok := kv.Value.(expvar.Func); ok { + v := f() + if ms, ok := v.(runtime.MemStats); ok && name == "memstats" { + writeMemstats(w, &ms) + return + } + funcRet = fmt.Sprintf(" returning %T", v) + } + fmt.Fprintf(w, "# skipping expvar %q (Go type %T%s) with undeclared Prometheus type\n", name, kv.Value, funcRet) return } @@ -213,3 +224,20 @@ func varzHandler(w http.ResponseWriter, r *http.Request) { dump("", kv) }) } + +func writeMemstats(w io.Writer, ms *runtime.MemStats) { + out := func(name, typ string, v uint64, help string) { + if help != "" { + fmt.Fprintf(w, "# HELP memstats_%s %s\n", name, help) + } + fmt.Fprintf(w, "# TYPE memstats_%s %s\nmemstats_%s %v\n", name, typ, name, v) + } + g := func(name string, v uint64, help string) { out(name, "gauge", v, help) } + c := func(name string, v uint64, help string) { out(name, "counter", v, help) } + g("heap_alloc", ms.HeapAlloc, "current bytes of allocated heap objects (up/down smoothly)") + c("total_alloc", ms.TotalAlloc, "cumulative bytes allocated for heap objects") + g("sys", ms.Sys, "total bytes of memory obtained from the OS") + c("mallocs", ms.Mallocs, "cumulative count of heap objects allocated") + c("frees", ms.Frees, "cumulative count of heap objects freed") + c("num_gc", uint64(ms.NumGC), "number of completed GC cycles") +}