云计算

监测numa cpu mem 负载

2021-03-04  本文已影响0人  cloudFans

两个工具 node_exporter 和 numa top

至少要拿到numa cpu mem usage 统计信息(metric)

  1. node_exporter
    /opt/node_exporter/node_exporter --path.procfs /host/proc --path.sysfs /host/sys --collector.meminfo_numa --web.listen-address 10.120.10.143:9100

--collector.meminfo_numa 支持监控numa的内存占用信息,但是 https://github.com/prometheus/node_exporter 显示 仅支持numa mem metrics,并不支持 numa cpu分配信息,所以numa cpu信息还要从别的角度去查

2.numa top

https://01.org/sites/default/files/documentation/numatop_introduction_0.pdf

编译安装



git clone https://github.com/intel/numatop.git
cd numatop
yum install autoconf automake libtool  check-devel ncurses-devel.x86_64 -y
sh -x autogen.sh 
make
make install 

上一篇下一篇

猜你喜欢

热点阅读