如何使用C#实时测量windows xp/2003/2008上每个进程的上传和下载带宽利用率?

发布于 2024-07-27 04:34:29 字数 54 浏览 5 评论 0原文

如何使用C#实时测量windows xp/2003/2008上每个进程的上传和下载带宽利用率?

How do I measure the upload and download bandwidth utilization per each process on windows xp/2003/2008 in realtime using C#?

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

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

发布评论

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

评论(1

锦上情书 2024-08-03 04:34:29

使用以下 2 个库之一来捕获数据包:

http://www.codeproject.com/ KB/cs/pacanal.aspx

http://www.codeproject。 com/KB/cs/pktcap.aspx

。 然后:

  • 捕获所有数据包
  • 对于每个数据包,获取关联的进程
  • 通过数据包长度和当前时间,对于每个进程,您将能够计算所使用的带宽。

事实上,一旦您成功捕获数据包并将它们与进程关联起来,就完成了。 那么你所要做的就是一些代数。

可能还有其他解决方案,但这是我目前能想到的唯一解决方案。

Use one of these 2 libraries to capture packets :

http://www.codeproject.com/KB/cs/pacanal.aspx

or

http://www.codeproject.com/KB/cs/pktcap.aspx

. Then:

  • Capture all packets
  • For each packet, get the associated process
  • With the packet length and the current time, for each process, you'll be able to compute the bandwidth used.

In fact, once you manage to capture the packets, and associate them to a process, it's done. Then all you have to do is a bit of algebra.

There may be other solutions, but that's the only one I can think of right now.

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