我正在使用CLR内存诊断库来获取正在运行的进程中所有线程的堆栈跟踪:
var result = new Dictionary<int, string[]>();
var pid = Process.GetCurrentProcess().Id;
using (var dataTarget = DataTarget.AttachToProcess(pid, 5000, AttachFlag.Passive))
{
string dacLocation = dataTarget.ClrVersions[0].TryGetDacLocation();
var runtime = dataTarget.CreateRuntime(dacLocation); //throws exception
foreach (var t in runtime.Threads)
{
result.Add(
t.ManagedThreadId,
t.StackTrace.Select(f =>
{
if (f.Method != null)
{
return f.Method.Type.Name + "." + f.Method.Name;
}
return null;
}).ToArray()
);
}
}
我从here获得了此代码,它似乎适用于其他人,但它在指定的行上为我抛出了一个例外,其中包含消息This runtime is not initialized and contains no data.
dacLocation
设为C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\mscordacwks.dll
答案 0 :(得分:10)
ClrMD目前不支持.NET 4.6。有一个公开拉取请求on GitHub,只用一行解决了这个问题。您当然可以克隆项目并构建自己的ClrMD,但不会出现此问题。
或者,我可以分享我过去几周一直在使用的临时黑客攻击:
public static ClrRuntime CreateRuntimeHack(this DataTarget target, string dacLocation, int major, int minor)
{
string dacFileNoExt = Path.GetFileNameWithoutExtension(dacLocation);
if (dacFileNoExt.Contains("mscordacwks") && major == 4 && minor >= 5)
{
Type dacLibraryType = typeof(DataTarget).Assembly.GetType("Microsoft.Diagnostics.Runtime.DacLibrary");
object dacLibrary = Activator.CreateInstance(dacLibraryType, target, dacLocation);
Type v45RuntimeType = typeof(DataTarget).Assembly.GetType("Microsoft.Diagnostics.Runtime.Desktop.V45Runtime");
object runtime = Activator.CreateInstance(v45RuntimeType, target, dacLibrary);
return (ClrRuntime)runtime;
}
else
{
return target.CreateRuntime(dacLocation);
}
}
我知道,这太可怕了,依赖于反思。但至少现在它可以工作,而且你不必更改代码。
答案 1 :(得分:4)
您可以通过下载最新版本的Microsoft.Diagnostics.Runtime.dll
(v0.8.31-beta)修复此问题:https://www.nuget.org/packages/Microsoft.Diagnostics.Runtime
版本v0.8.31-beta标记了许多功能已经过时,因此Alois Kraus提到,runtime.GetHeap()
可以打破。我能够通过如下创建运行时来解决此问题:
DataTarget target = DataTarget.AttachProcess(pid, timeout, mode);
ClrRuntime runtime = target.ClrVersions.First().CreateRuntime();
ClrHeap heap = runtime.GetHeap();
现在不需要TryGetDacLocation()
的所有废话。