获取另一个进程的值 CLR 内存性能计数器

发布于 2024-12-28 22:38:57 字数 100 浏览 0 评论 0原文

我有一些启动另一个进程的 C# 代码。现在我希望能够获取该进程 Gen2 堆大小的 CLR 内存性能计数器的值。

有人可以帮助我开始或指导我到一个图书馆,让这变得容易吗?

I have some C# code which starts up another process. Now I want to be able to obtain the value of the CLR Memory Performance counter for that process' Gen2 Heap size.

Can anybody get me started or direct me to a library which makes this easy?

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

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

发布评论

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

评论(2

枯叶蝶 2025-01-04 22:38:57

使用 PerformanceCounter 类。像这样:

using System;
using System.Diagnostics;

class Program {
    static void Main(string[] args) {
        var process = "devenv";   // Modify this
        var ctr = new PerformanceCounter(".NET CLR Memory", "Gen 2 heap size", process);
        Console.WriteLine(ctr.RawValue);
        Console.ReadLine();
    }
}

Use the PerformanceCounter class. Like this:

using System;
using System.Diagnostics;

class Program {
    static void Main(string[] args) {
        var process = "devenv";   // Modify this
        var ctr = new PerformanceCounter(".NET CLR Memory", "Gen 2 heap size", process);
        Console.WriteLine(ctr.RawValue);
        Console.ReadLine();
    }
}
神爱温柔 2025-01-04 22:38:57

您需要构建的是代码分析器,请从此处开始阅读:http://msdn .microsoft.com/en-us/library/s5ec0es1.aspx

What you need to build is a code profiler, start reading here: http://msdn.microsoft.com/en-us/library/s5ec0es1.aspx.

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