如何使用 C# 编码检查 Windows 服务器上的负载?
我有 6 台 Windows 服务器,它们在不同的位置工作。
我需要使用 C# 编码从一台服务器检查每台服务器上的负载。
提前致谢。
I have 6 windows servers, those are working on different locations.
i need to check load on each server from one Server by using C# coding.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想您可以使用 System.Diagnostics 命名空间中的 PerformanceCounter 类。它具有以下构造函数:
您可以在此页面上看到一个简单的示例。
I guess you can use the
PerformanceCounter
class from theSystem.Diagnostics
namespace. It has the following constructor:You can see a simple example on this page.