用go编写prometheus自研exporter——CPU及内存的指标
需求:利用go语言获取linux主机的cpu利用率及内存使用量和剩余量,并将其制作成exporter编写go代码及注解如下:package mainimport (“bufio”“io/ioutil”“net/http”“os”“fmt”“strconv”“strings”“time”)func getCPUSample() (idle, total uint64) {//读取/proc/stat内容contents, err := ioutil.ReadFile("/proc