await copyTask;
}
- // using the generated trace file, symbolocate and compute stacks.
+ // using the generated trace file, symbolicate and compute stacks.
tempEtlxFilename = TraceLog.CreateFromEventPipeDataFile(tempNetTraceFilename);
using (var symbolReader = new SymbolReader(System.IO.TextWriter.Null) { SymbolPath = SymbolPath.MicrosoftSymbolServerPath })
using (var eventLog = new TraceLog(tempEtlxFilename))
public static Option ProcessIdOption() =>
new Option(
aliases: new[] { "-p", "--process-id" },
- description: "The process id to collect the trace.")
+ description: "The process id to report the stack.")
{
Argument = new Argument<int>(name: "pid")
};
public static Option NameOption() =>
new Option(
aliases: new[] { "-n", "--name" },
- description: "The name of the process to collect the trace.")
+ description: "The name of the process to report the stack.")
{
Argument = new Argument<string>(name: "name")
};