1 Star 0 Fork 0

zhangjungang/beats

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
visitor_expvar.go 1.55 KB
一键复制 编辑 原始数据 按行查看 历史
package monitoring
import (
"encoding/json"
"expvar"
"strconv"
)
// VisitExpvars iterates all expvar metrics using the Visitor interface.
// The top-level metrics "memstats" and "cmdline", plus all monitoring.X metric types
// are ignored.
func VisitExpvars(vs Visitor) {
vs.OnRegistryStart()
expvar.Do(makeExparVisitor(0, vs))
vs.OnRegistryFinished()
}
func DoExpvars(f func(string, interface{})) {
VisitExpvars(NewKeyValueVisitor(f))
}
func makeExparVisitor(level int, vs Visitor) func(expvar.KeyValue) {
return func(kv expvar.KeyValue) {
if ignoreExpvar(level, kv) {
return
}
name := kv.Key
variable := kv.Value
switch v := variable.(type) {
case *expvar.Int:
i, _ := strconv.ParseInt(v.String(), 10, 64)
vs.OnKey(name)
vs.OnInt(i)
case *expvar.Float:
f, _ := strconv.ParseFloat(v.String(), 64)
vs.OnKey(name)
vs.OnFloat(f)
case *expvar.Map:
vs.OnKey(name)
vs.OnRegistryStart()
v.Do(makeExparVisitor(level+1, vs))
vs.OnRegistryFinished()
default:
vs.OnKey(name)
s := v.String()
if len(s) >= 2 && s[0] == '"' && s[len(s)-1] == '"' {
var tmp string
if err := json.Unmarshal([]byte(s), &tmp); err == nil {
s = tmp
}
}
vs.OnString(s)
}
}
}
// ignore if `monitoring` variable or some other internals
// autmoatically registered by expvar against our wishes
func ignoreExpvar(level int, kv expvar.KeyValue) bool {
switch kv.Value.(type) {
case makeExpvar, Var:
return true
}
if level == 0 {
switch kv.Key {
case "memstats", "cmdline":
return true
}
}
return false
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhangjungang/beats.git
git@gitee.com:zhangjungang/beats.git
zhangjungang
beats
beats
v5.3.2

搜索帮助

344bd9b3 5694891 D2dac590 5694891