linux – stress-ng:模拟特定的cpu百分比

前端之家收集整理的这篇文章主要介绍了linux – stress-ng:模拟特定的cpu百分比前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Linux环境:Debian,Ubuntu,Centos

目标:
测试监控程序,设置警报并以不同的cpu百分比触发不同的警报.
例如:(30-50%),(51-70%)和> 90%

所以我需要一个可以模拟每个核心特定cpu百分比的cpu stresser.
压力-mg看起来像最先进的.

根据其文档http://kernel.ubuntu.com/~cking/stress-ng/,可以将负载值设置在0到100%之间:

-l P –cpu-load P load cpu by P %,0=sleep,100=full load (see -c)

stress-ng -c 1 -p 30

stress-ng: info: [12650] dispatching hogs: 0
I/O-Sync,1 cpu,0 VM-mmap,0 HDD-Write,0 Fork,0 Context-switch,30
Pipe,0 Cache,0 Socket,0 Yield,0 Fallocate,0 Flock,0 Affinity,0
Timer,0 Dentry,0 Urandom,0 Float,0 Int,0 Semaphore,0 Open,0
SigQueue,0 Poll

不理想的结果:
但它似乎不起作用,aLL核心在100%徘徊

任何想法如何实现这一目标?

解决方法

我设计了stress-ng,这样就可以指定0表示压力源进程的数量,以匹配在线cpu数量,所以要加载每个cpu,比如40%,使用

stress-ng -c 0 -l 40

原文链接:/linux/399462.html

猜你在找的Linux相关文章