linux – 一个特定进程的Dstat CPU使用情况

前端之家收集整理的这篇文章主要介绍了linux – 一个特定进程的Dstat CPU使用情况前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用dstat可以测量一个特定进程的cpu和内存?有可能用–top-cputime来衡量最消耗的cpu,但是可以测量一个特定的cpu吗?

我想用–output写入一个文件,以便稍后制作一个图形,而不是使用“>”操作符.

解决方法

您可以使用命令| grep specific_text

例如test dstat | grep木偶

为了将输出结果保存在日志文件中,您有两个选项:

使用 – 输出文件
dstat –time –cpu –top-cputime –output /tmp/dstat.log | grep木偶

使用命令>文件
dstat –time –cpu –top-cputime> /tmp/dstat.log | grep木偶

对于appendind日志:
dstat –time –cpu –top-cputime>> /tmp/dstat.log | grep木偶

这是这两个命令的screenshots

根据您的意见,这些命令可以帮助您:

(1)将数据保存在文件中dstat –time –cpu –top-cputime –output my.log

(2)应用过滤日志文件并将结果保存到文件cat my.log | grep httpd> myhttpd.log

(3)最终结果cat myhttpd.log

看到结果here的屏幕截图

原文链接:https://www.f2er.com/linux/393817.html

猜你在找的Linux相关文章