我正在尝试使用ClrMD来转储在特定进程中运行的所有线程的堆栈跟踪。代码在我的开发环境中工作正常,但在生产服务器上却没有。
服务器正在运行:Windows Server 2012 R2 Standard
我收到的错误是:
无法附加到进程。错误0。
This post询问如何将ClrMD附加到另一个用户进程,这正是我试图做的。我终止了进程(作为Windows服务运行)并以我尝试执行ClrMD的同一用户启动它。我仍然得到错误。
尝试给用户调试privlidges,但这也没有帮助。
我敢打赌这个问题与如何配置生产服务器有关。我有管理员权限。
关于下一步该怎么做的任何建议?
代码:
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using Microsoft.Diagnostics.Runtime;
namespace ConsoleApplication4
{
class Program
{
static void Main(string[] args)
{
int pid = 0;
var result = new Dictionary<int, string[]>();
var targetProcessName = "Dist.TingbogScraper.Business.TingbogScraperService.vshost";
// Change this to the process you are looking for
var outputPath = "C:\\temp\\ClrMDresult.txt";
var exceptionOutput = "C:\\temp\\ClrMDdump.txt";
var processes = Process.GetProcesses();
foreach (var process in processes)
{
if (process.ProcessName.Contains(targetProcessName))
{
pid = process.Id;
}
}
try
{
using (var dataTarget = DataTarget.AttachToProcess(pid, 5000, AttachFlag.Passive))
{
ClrRuntime runtime = dataTarget.ClrVersions.First().CreateRuntime();
foreach (var t in runtime.Threads)
{
try
{
if (t.StackTrace != null)
{
result.Add(
t.ManagedThreadId,
t.StackTrace.Select(f =>
{
if (f.Method != null)
{
return f.Method.Type.Name + "." + f.Method.Name;
}
return null;
}).ToArray()
);
}
}
catch (Exception ex)
{
}
}
}
foreach (var kvp in result)
{
var value = kvp.Value;
foreach (var stacktrace in value)
{
System.IO.File.AppendAllText(outputPath,
string.Format("{0} {1} {2}", kvp.Key, stacktrace, Environment.NewLine));
}
}
}
catch (ClrDiagnosticsException ex)
{
System.IO.File.AppendAllText(outputPath,
string.Format("{0} {1} {2}", ex.Message, ex.StackTrace, ex.Source));
}
}
}
}
答案 0 :(得分:0)
发现与生产相比,我的开发环境中的流程名称不同。
更正了修复错误的进程名称。