微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

php – 通过SSH获取CPU使用率

我想通过SSH检索cpu利用率百分比,我尝试了命令“top”,但它不会让我.

我正在使用CentOS 6.

我试过这段代码

$connection = ssh2_connect("IP", PORT);
ssh2_auth_password($connection, "root", "PASS");
$stream = ssh2_exec($connection, "top");
$errorStream = ssh2_fetch_stream($stream, SSH2_STREAM_STDERR);

// Enable blocking for both streams
stream_set_blocking($errorStream, true);
stream_set_blocking($stream, true);

// Whichever of the two below commands is listed first will receive its appropriate output.  The second command receives nothing
echo "Output: " . stream_get_contents($stream);
echo "Error: " . stream_get_contents($errorStream);

// Close the streams        
fclose($errorStream);
fclose($stream);

但它每次都给我一个错误输出错误:未设置TERM环境变量.

我正在使用PHP.

解决方法:

谢谢大家,但我做到了.
我做了这个命令:

top -b -n 10 -d.2 | grep 'cpu' |  awk 'NR==3{ print($2)}'

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐