我正在尝试计算进程的CPU使用率(%)。现在,我不知道这样做是否正确,但是我需要能够远程找到某个进程的CPU使用率(%)。
我正在尝试将此命令发送到主机名为“ BIT-test-VM-2”的远程计算机,以获取tomcat8的处理器时间。
typeperf -s BIT-test-VM-2 "Process(tomcat8)\% Processor Time"
但是我遇到以下错误
C:\Users\Administrator>typeperf -s BIT-test-VM-2 "Process(tomcat8)\% Processor Time"
Error: No valid counters.
Note:
In order to use typeperf, you must either be a member of the local Performance Log Users group, or the command must be executed from an elevated command window.
我已经将管理员帐户添加到远程计算机上的性能日志和性能监视器用户组。我也尝试过以管理员身份运行命令提示符。
请注意,我可以ping通“ BIT-test-VM-2”,并且远程计算机和本地计算机都运行Windows 10 ProN。
还请注意,以下命令在我的本地计算机和BIT-test-VM-2上均可正常运行。
typeperf "Process(tomcat8)\% Processor Time"
任何帮助将不胜感激。谢谢!