处理器使用情况

发布于 2024-10-01 12:32:52 字数 227 浏览 4 评论 0原文

可能的重复:
使用 WMI 和 CPU 使用情况C#

如何使用 WMI 检索 C# (.NET) 中的 CPU 使用率百分比?是的,没有任何愚蠢的性能计数器。

Possible Duplicate:
CPU Usage using WMI & C#

How to retrieve CPU usage % in C# (.NET) using WMI? Yes, without any stupid PerformanceCounter.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你如我软肋 2024-10-08 12:32:52

PerformanceCounter 是一种非常检索此信息的方法。与 WMI 相反,WMI 将为您提供完全相同的信息,但会产生大量开销,因为它运行在 COM 之上。

它与 PC 有着完全相同的问题,这就是为什么我猜你认为它是“愚蠢的”。 CPU 使用百分比是在一定时间间隔内测量的。实际 CPU 使用率为 0 或 100%,CPU 绝不会故意以较低的速率运行。当有线程有工作要做时,它会全速运行代码。如果没有工作要做,你的台式机的正常状态,那么CPU就用HLT指令关闭。它被时钟中断再次唤醒。

TaskMgr 或 Permon 中显示的 CPU 使用百分比是一秒内的计算值。以 100% 运行的时间与关闭的时间之比。间隔长度非常非常重要。你做得越短,计算出的值就越“跳跃”。只要连续调用 NextValue() 两次,您将始终获得 100% 的结果。

长话短说:你需要一个计时器。用一秒钟的时间来模拟您在 PerfMon 和 TaskMgr 中看到的内容。

PerformanceCounter is a very low cost way of retrieving this info. As opposed to WMI which will give you the exact same info but with lots of overhead because it runs on top of COM.

And it has the exact same problem as PC, which is why I'd guess you think it is 'stupid'. CPU usage percent is measured over an interval. Actual CPU usage is either 0 or 100%, the CPU never runs intentionally at a lower rate. It runs code at full bore when there's a thread that has work to do. If there is no work to do, the normal state of your desktop machine, then the CPU is powered off with the HLT instruction. It is woken up again with the clock interrupt.

The CPU usage percentage as shown in TaskMgr or Permon is a calculated value over one second. The ratio of the amount of time it was running at 100% vs the amount of time it was turned off. The interval length is very important. The shorter you make it, the 'jumpier' the calculated value gets. Down to calling NextValue() twice in a row, you'll always get 100%.

Long story short: you need a timer. Make it one second to emulate what you see in PerfMon and TaskMgr.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文