golang toolkits包的使用
在查看open-falcon 项目源码时,经常会看到其引用了一个类库toolkits,而仔细查看该类库的作者为秦晓辉(UlricQin)— 原Open-Falcon主程,现滴滴云运维负责人 。所以有了这层关系就不难理解open-Falcon引用toolkits里很多代码的原因了吧。toolkits里根据模块类型分了多个子项目,其根据类型又分为LINUX底层性能监控的、邮件发送的、网络的等,这里以nux项为例,说下如下引用。
如下引用其中的部分实现的函数进行处理,代码如下:
1// code from www.361way.com
2package main
3import (
4 "fmt"
5 "github.com/toolkits/nux"
6)
7func main() {
8 l,_ := nux.LoadAvg()
9 fmt.Println(nux.LoadAvg())
10 m,_ := nux.MemInfo()
11 fmt.Println(l)
12 fmt.Println(l.Avg1min)
13 fmt.Println(m)
14 fmt.Println(nux.NumCpu())
15 //fmt.Println(nux.CurrentProcStat())
16 fmt.Println(nux.ListMountPoint())
17 fmt.Println(nux.BuildDeviceUsage("/dev/mapper/centos-root","/","xfs"))
18}
执行结果如下:
其代码写的比较清晰简洁,可以作为参考使用下。不过其对部分指标处理的结果可能和我们所需的结果还是有一些出入,比如,我们平时需要查看的CPU使用率,并不会取各各指标占用的CPU时间,而是直接像top查看到的结果一样,只看idel、us等占用的CPU百分比是多少。正因为如些,所以open-falcon项目在此基础上又进行了二次封装,其地址为: 这里只取其中一个指标的获取方式的代码,如下:
1func CpuIdle() float64 {
2 psLock.RLock()
3 defer psLock.RUnlock()
4 dt := deltaTotal()
5 if dt == 0 {
6 return 0.0
7 }
8 invQuotient := 100.00 / float64(dt)
9 return float64(procStatHistory[0].Cpu.Idle-procStatHistory[1].Cpu.Idle) * invQuotient
10}
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/golang-toolkits/5904.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.