From ac638f5b26827f23811626adbabdaaff51a1968d Mon Sep 17 00:00:00 2001 From: mrsharm Date: Wed, 23 Aug 2023 12:49:20 -0700 Subject: [PATCH 01/26] Added significant improvements to the ASP.NET Benchmarks --- .../ASPNetBenchmarks/ASPNetBenchmarks.csv | 3 +- .../ASPNetBenchmarks.CommandBuilder.cs | 37 ++++++- .../ASPNetBenchmark.Configuration.cs | 3 + .../AspNetBenchmarksAnalyzeCommand.cs | 97 ++++++++++-------- .../AspNetBenchmarksCommand.cs | 40 +++++--- src/benchmarks/gc/GC.Infrastructure/README.md | 2 + .../docs/ASPNETBenchmarks.md | 30 ++++++ .../docs/images/CorpNetConnected.png | Bin 0 -> 102463 bytes 8 files changed, 150 insertions(+), 62 deletions(-) create mode 100644 src/benchmarks/gc/GC.Infrastructure/docs/ASPNETBenchmarks.md create mode 100644 src/benchmarks/gc/GC.Infrastructure/docs/images/CorpNetConnected.png diff --git a/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks.csv b/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks.csv index b0a9ec48e19..4e919b04cf7 100644 --- a/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks.csv +++ b/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks.csv @@ -1,2 +1,3 @@ Legend,Base CommandLine -Stage1Grpc_Linux, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario basicgrpcvanilla --profile intel-load2-app --profile amd-lin2-load --profile amd-lin2-db --application.options.collectCounters true \ No newline at end of file +Stage1Grpc_Linux, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario basicgrpcvanilla --profile intel-load2-app --profile amd-lin2-load --profile amd-lin2-db --application.options.collectCounters true +JsonCrossgen2_Windows," --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/json.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/azure.profile.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario json --profile intel-win-app --profile intel-load2-load --application.buildArguments ""/p:PublishReadyToRun=true /p:PublishReadyToRunUseCrossgen2=true"" --application.options.requiredOperatingSystem windows --application.collectDependencies true --application.options.collectCounters true " \ No newline at end of file diff --git a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/CommandBuilders/ASPNetBenchmarks.CommandBuilder.cs b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/CommandBuilders/ASPNetBenchmarks.CommandBuilder.cs index 8571eddc701..c13398e80f0 100644 --- a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/CommandBuilders/ASPNetBenchmarks.CommandBuilder.cs +++ b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/CommandBuilders/ASPNetBenchmarks.CommandBuilder.cs @@ -72,14 +72,45 @@ public static (string, string) Build(ASPNetBenchmarksConfiguration configuration commandStringBuilder.Append($" --application.options.traceOutput {Path.Combine(configuration.Output.Path, run.Key, (baseConfiguration.Key + "." + collectType)) + traceFileSuffix}"); } - commandStringBuilder.Append($" --application.framework net8.0 "); + // Add any additional arguments specified. + if (!string.IsNullOrEmpty(configuration.benchmark_settings.additional_arguments)) + { + commandStringBuilder.Append($" {configuration.benchmark_settings.additional_arguments} "); + } + + // Add the Framework version. + string frameworkVersion = "net8.0"; + // If the framework version at the top level is explicitly stated, use it. + if (!string.IsNullOrEmpty(configuration.Environment.framework_version)) + { + frameworkVersion = configuration.Environment.framework_version; - string corerunToSend = run.Value.corerun.EndsWith("\\") ? run.Value.corerun.Remove(run.Value.corerun.Length - 1) : run.Value.corerun; - commandStringBuilder.Append($" --application.options.outputFiles {Path.Combine(Path.GetDirectoryName(corerunToSend), "*.*" )}"); + // If the framework version is set at the run level, use it. + if (!string.IsNullOrEmpty(run.Value.framework_version)) + { + frameworkVersion = run.Value.framework_version; + } + } + commandStringBuilder.Append($" --application.framework {frameworkVersion} "); + + string artifactsToUpload = run.Value.corerun!; + + // If the corerun specified is a directory, upload the entire directory. + // Else, we upload just the file. + if (Directory.Exists(run.Value.corerun!)) + { + artifactsToUpload = Path.Combine(artifactsToUpload, "*.*"); + } + commandStringBuilder.Append($" --application.options.outputFiles {artifactsToUpload} "); // Get the log. + // TODO: Specify the path. commandStringBuilder.Append(" --application.options.downloadOutput true "); + commandStringBuilder.Append($" --application.options.downloadOutput {Path.Combine(configuration.Output.Path, run.Key, $"{baseConfiguration.Key}_{run.Key}.output")} "); + commandStringBuilder.Append(" --application.options.downloadBuildLog true "); + commandStringBuilder.Append($" --application.options.downloadBuildLogOutput {Path.Combine(configuration.Output.Path, run.Key, $"{baseConfiguration.Key}_{run.Key}.buildLog")} "); + commandStringBuilder.Append($" --json {Path.Combine(configuration.Output.Path, run.Key, $"{baseConfiguration.Key}_{run.Key}.json")}"); return (processName, commandStringBuilder.ToString()); diff --git a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/Configurations/ASPNetBenchmark.Configuration.cs b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/Configurations/ASPNetBenchmark.Configuration.cs index f30e3ff4b04..059bfd4a2f3 100644 --- a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/Configurations/ASPNetBenchmark.Configuration.cs +++ b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/Configurations/ASPNetBenchmark.Configuration.cs @@ -11,17 +11,20 @@ public sealed class ASPNetBenchmarksConfiguration : ConfigurationBase public sealed class Run : RunBase { public string? corerun { get; set; } + public string? framework_version { get; set; } } public class Environment { public Dictionary environment_variables { get; set; } = new(); public uint default_max_seconds { get; set; } = 300; + public string framework_version { get; set; } = "net8.0"; } public class BenchmarkSettings { public string benchmark_file { get; set; } + public string additional_arguments { get; set; } = ""; } public class Output : OutputBase { } diff --git a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksAnalyzeCommand.cs b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksAnalyzeCommand.cs index 4bf8cd7c5b6..d8aa20186f0 100644 --- a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksAnalyzeCommand.cs +++ b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksAnalyzeCommand.cs @@ -47,6 +47,8 @@ public static Dictionary> ExecuteAnalysis(ASPNetBench // Benchmark to Run to Path. Dictionary> benchmarkToRunToPaths = new(); + bool singleRun = configuration.Runs.Count == 1; + // For each Run, grab the paths of each of the benchmarks. string outputPath = configuration.Output.Path; foreach (var c in configuration.Runs) @@ -64,76 +66,83 @@ public static Dictionary> ExecuteAnalysis(ASPNetBench } } - // Launch new process. Dictionary benchmarkToComparisons = new(); Dictionary> metricResults = new(); - foreach (var benchmark in benchmarkToRunToPaths) + // Compute the compare functionality if there is a single run. + if (!singleRun) { - List paths = benchmark.Value; - using (Process crankCompareProcess = new()) + foreach (var benchmark in benchmarkToRunToPaths) { - crankCompareProcess.StartInfo.UseShellExecute = false; - crankCompareProcess.StartInfo.FileName = "crank"; - crankCompareProcess.StartInfo.Arguments = $"compare {string.Join(" ", paths)}"; - crankCompareProcess.StartInfo.RedirectStandardOutput = true; - crankCompareProcess.StartInfo.RedirectStandardError = true; - crankCompareProcess.StartInfo.CreateNoWindow = true; + List paths = benchmark.Value; + using (Process crankCompareProcess = new()) + { + crankCompareProcess.StartInfo.UseShellExecute = false; + crankCompareProcess.StartInfo.FileName = "crank"; + crankCompareProcess.StartInfo.Arguments = $"compare {string.Join(" ", paths)}"; + crankCompareProcess.StartInfo.RedirectStandardOutput = true; + crankCompareProcess.StartInfo.RedirectStandardError = true; + crankCompareProcess.StartInfo.CreateNoWindow = true; - // Grab the output and save it. - crankCompareProcess.Start(); + // Grab the output and save it. + crankCompareProcess.Start(); - string output = crankCompareProcess.StandardOutput.ReadToEnd(); - crankCompareProcess.WaitForExit((int)configuration.Environment.default_max_seconds * 1000); + string output = crankCompareProcess.StandardOutput.ReadToEnd(); + crankCompareProcess.WaitForExit((int)configuration.Environment.default_max_seconds * 1000); - if (crankCompareProcess.ExitCode == 0) - { - if (!metricResults.TryGetValue(benchmark.Key, out var metrics )) + if (crankCompareProcess.ExitCode == 0) { - metrics = metricResults[benchmark.Key] = new(); + if (!metricResults.TryGetValue(benchmark.Key, out var metrics )) + { + metrics = metricResults[benchmark.Key] = new(); + } + + metrics.AddRange(GetMetricResults(output, benchmark.Key)); } - metrics.AddRange(GetMetricResults(output, benchmark.Key)); + benchmarkToComparisons[benchmark.Key] = output; } - - benchmarkToComparisons[benchmark.Key] = output; } } using (StreamWriter sw = new StreamWriter(Path.Combine(configuration.Output.Path, "Results.md"))) { - sw.WriteLine("# Summary"); + // Ignore the summary section in case there is only one run. + if (!singleRun) + { + sw.WriteLine("# Summary"); - var topLevelSummarySet = new HashSet(new List { "Working Set (MB)", "Private Memory (MB)", "Requests/sec", "Mean Latency (MSec)", "Latency 50th (MSec)", "Latency 75th (MSec)", "Latency 90th (MSec)", "Latency 99th (MSec)" }); - sw.WriteLine($"| | {string.Join("|", topLevelSummarySet)}"); - sw.WriteLine($"|--- | {string.Join( "", Enumerable.Repeat("---|", topLevelSummarySet.Count ))}"); + var topLevelSummarySet = new HashSet(new List { "Working Set (MB)", "Private Memory (MB)", "Requests/sec", "Mean Latency (MSec)", "Latency 50th (MSec)", "Latency 75th (MSec)", "Latency 90th (MSec)", "Latency 99th (MSec)" }); + sw.WriteLine($"| | {string.Join("|", topLevelSummarySet)}"); + sw.WriteLine($"|--- | {string.Join( "", Enumerable.Repeat("---|", topLevelSummarySet.Count ))}"); - foreach (var r in metricResults) - { - double workingSet = r.Value.FirstOrDefault(m => m.MetricName.Contains("Working Set (MB)") && m.MetricName.Contains("application"))?.DeltaPercent ?? double.NaN; - workingSet = Math.Round(workingSet, 2); - double privateMemory = r.Value.FirstOrDefault(m => m.MetricName.Contains("Private Memory (MB)") && m.MetricName.Contains("application"))?.DeltaPercent ?? double.NaN; - privateMemory = Math.Round(privateMemory, 2); + foreach (var r in metricResults) + { + double workingSet = r.Value.FirstOrDefault(m => m.MetricName.Contains("Working Set (MB)") && m.MetricName.Contains("application"))?.DeltaPercent ?? double.NaN; + workingSet = Math.Round(workingSet, 2); + double privateMemory = r.Value.FirstOrDefault(m => m.MetricName.Contains("Private Memory (MB)") && m.MetricName.Contains("application"))?.DeltaPercent ?? double.NaN; + privateMemory = Math.Round(privateMemory, 2); - double rps = r.Value.FirstOrDefault(m => m.MetricName == "load_Requests/sec")?.DeltaPercent ?? double.NaN; - rps = Math.Round(rps, 2); + double rps = r.Value.FirstOrDefault(m => m.MetricName == "load_Requests/sec")?.DeltaPercent ?? double.NaN; + rps = Math.Round(rps, 2); - double meanLatency = r.Value.FirstOrDefault(m => m.MetricName.Contains("load_Mean latency"))?.DeltaPercent ?? double.NaN; - meanLatency = Math.Round(meanLatency, 2); + double meanLatency = r.Value.FirstOrDefault(m => m.MetricName.Contains("load_Mean latency"))?.DeltaPercent ?? double.NaN; + meanLatency = Math.Round(meanLatency, 2); - double latency50 = r.Value.FirstOrDefault(m => m.MetricName == "load_Latency 50th (ms)")?.DeltaPercent ?? double.NaN; - latency50 = Math.Round(latency50, 2); + double latency50 = r.Value.FirstOrDefault(m => m.MetricName == "load_Latency 50th (ms)")?.DeltaPercent ?? double.NaN; + latency50 = Math.Round(latency50, 2); - double latency75 = r.Value.FirstOrDefault(m => m.MetricName == "load_Latency 75th (ms)")?.DeltaPercent ?? double.NaN; - latency75 = Math.Round(latency75, 2); + double latency75 = r.Value.FirstOrDefault(m => m.MetricName == "load_Latency 75th (ms)")?.DeltaPercent ?? double.NaN; + latency75 = Math.Round(latency75, 2); - double latency90 = r.Value.FirstOrDefault(m => m.MetricName == "load_Latency 90th (ms)")?.DeltaPercent ?? double.NaN; - latency90 = Math.Round(latency90, 2); + double latency90 = r.Value.FirstOrDefault(m => m.MetricName == "load_Latency 90th (ms)")?.DeltaPercent ?? double.NaN; + latency90 = Math.Round(latency90, 2); - double latency99 = r.Value.FirstOrDefault(m => m.MetricName == "load_Latency 99th (ms)")?.DeltaPercent ?? double.NaN; - latency99 = Math.Round(latency99, 2); + double latency99 = r.Value.FirstOrDefault(m => m.MetricName == "load_Latency 99th (ms)")?.DeltaPercent ?? double.NaN; + latency99 = Math.Round(latency99, 2); - sw.WriteLine($"{r.Key} | {workingSet}% | {privateMemory}% | {rps}% | {meanLatency}% | {latency50}% | {latency75}% | {latency90}% | {latency99}% |"); + sw.WriteLine($"{r.Key} | {workingSet}% | {privateMemory}% | {rps}% | {meanLatency}% | {latency50}% | {latency75}% | {latency90}% | {latency99}% |"); + } } sw.AddIncompleteTestsSection(executionDetails); diff --git a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksCommand.cs b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksCommand.cs index 301d5e73e81..20366c9eb6e 100644 --- a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksCommand.cs +++ b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksCommand.cs @@ -36,7 +36,7 @@ public sealed class AspNetBenchmarkSettings : CommandSettings public override int Execute([NotNull] CommandContext context, [NotNull] AspNetBenchmarkSettings settings) { - AnsiConsole.Write(new Rule("ASPNet Benchmarks Orchestrator")); + AnsiConsole.Write(new Rule("ASP.NET Benchmarks Orchestrator")); AnsiConsole.WriteLine(); ConfigurationChecker.VerifyFile(settings.ConfigurationPath, nameof(AspNetBenchmarksCommand)); @@ -67,12 +67,12 @@ public static AspNetBenchmarkResults RunASPNetBenchmarks(ASPNetBenchmarksConfigu configurationToCommand[line[0]] = line[1]; } + // For each benchmark, iterate over all specified runs. foreach (var c in configurationToCommand) { foreach (var run in configuration.Runs) { OS os = !c.Key.Contains("Win") ? OS.Linux : OS.Windows; - // Build Commandline. (string, string) commandLine = ASPNetBenchmarksCommandBuilder.Build(configuration, run, c, os); string outputPath = Path.Combine(configuration.Output.Path, run.Key); @@ -81,7 +81,13 @@ public static AspNetBenchmarkResults RunASPNetBenchmarks(ASPNetBenchmarksConfigu Directory.CreateDirectory(outputPath); } - // Launch new process. + // There are 3 main ASP.NET errors: + // 1. The server is unavailable - this could be because you aren't connected to CorpNet or the machine is down. + // 2. The crank commands are incorrect. + // 3. Test fails because of a test error. + + // Launch new crank process. + int exitCode = -1; StringBuilder output = new(); StringBuilder error = new(); @@ -94,7 +100,7 @@ public static AspNetBenchmarkResults RunASPNetBenchmarks(ASPNetBenchmarksConfigu crankProcess.StartInfo.RedirectStandardOutput = true; crankProcess.StartInfo.CreateNoWindow = true; - AnsiConsole.MarkupLine($"[green bold] ({DateTime.Now}) Running ASPNetBenchmark for Configuration {configuration.Name} {run.Key} {c.Key} [/]"); + AnsiConsole.MarkupLine($"[green bold] ({DateTime.Now}) Running ASP.NET Benchmark for Configuration {configuration.Name} {run.Key} {c.Key} [/]"); crankProcess.OutputDataReceived += (s, d) => { @@ -110,16 +116,17 @@ public static AspNetBenchmarkResults RunASPNetBenchmarks(ASPNetBenchmarksConfigu crankProcess.BeginErrorReadLine(); bool exited = crankProcess.WaitForExit((int)configuration.Environment.default_max_seconds * 1000); + exitCode = crankProcess.ExitCode; } - int exitCode = -1; - string outputFile = Path.Combine(configuration.Output.Path, run.Key, $"{c.Key}_{run.Key}.json"); + string outputDetails = output.ToString(); + if (File.Exists(outputFile)) { string[] outputLines = File.ReadAllLines(outputFile); - // In a quick and dirty way check the returnCode from the file. + // In a quick and dirty way, check the returnCode from the file that'll tell us if the test failed. foreach (var o in outputLines) { if (o.Contains("returnCode")) @@ -132,27 +139,32 @@ public static AspNetBenchmarkResults RunASPNetBenchmarks(ASPNetBenchmarksConfigu } } - string outputDetails = output.ToString(); - File.WriteAllText(Path.Combine(outputPath, $"{GetKey(c.Key, run.Key)}.log"), "Output: \n" + outputDetails + "\n Errors: \n" + error.ToString()); + // For the case where the output file doesn't exist implies that was an issue connecting to the asp.net machines or error number 1. + // This case also applies for incorrect crank arguments or error number 2. + // Move the standard out to the standard error as the process failed. + else + { + error.AppendLine(outputDetails); + } + string logfileOutput = Path.Combine(outputPath, $"{GetKey(c.Key, run.Key)}.log"); if (exitCode != 0) { - StringBuilder errorLines = new(); - - errorLines.AppendLine(error.ToString()); string[] outputLines = outputDetails.Split("\n"); foreach (var o in outputLines) { // Crank provides the standard error from the test itself by this mechanism. + // Error #3: Issues with test run. if (o.StartsWith("[STDERR]")) { - errorLines.AppendLine(o); + error.AppendLine(o.Replace("[STDERR]", "")); } } - AnsiConsole.Markup($"[red bold] Failed with the following errors:\n {Markup.Escape(errorLines.ToString())} [/]"); + AnsiConsole.Markup($"[red bold] Failed with the following errors:\n {Markup.Escape(error.ToString())} \n Check the log file for more information: {logfileOutput} [/]"); } + File.WriteAllText(logfileOutput, "Output: \n" + outputDetails + "\n Errors: \n" + error.ToString()); executionDetails[GetKey(c.Key, run.Key)] = new ProcessExecutionDetails(key: GetKey(c.Key, run.Key), commandlineArgs: commandLine.Item1 + " " + commandLine.Item2, environmentVariables: new(), diff --git a/src/benchmarks/gc/GC.Infrastructure/README.md b/src/benchmarks/gc/GC.Infrastructure/README.md index cd53080c50b..a84631d165e 100644 --- a/src/benchmarks/gc/GC.Infrastructure/README.md +++ b/src/benchmarks/gc/GC.Infrastructure/README.md @@ -149,6 +149,8 @@ To run the infrastructure on a specific set of ASP.NET Benchmarks such as the su 1. ``cd C:\performance\artifacts\bin\GC.Infrastructure\Release\net7.0\``. 2. ``.\GC.Infrastructure.exe aspnetbenchmarks --configuration C:\GC.Analysis.API\Configurations\ASPNetBenchmarks\ASPNetBenchmarks.yaml``. +More details about running and troubleshooting ASP.NET benchmarks can be found [here](./docs/ASPNETBenchmarks.md). + ###### Uploading Only A Subset of the Binaries The ASP.NET benchmarks can be run without any of the users changes however, if the user wants to upload modified binaries with their changes, it is advisable to only upload those as long as they are compatible with the version of .NET runtime you wish to test against. Currently, the default framework to run these tests is net8.0. diff --git a/src/benchmarks/gc/GC.Infrastructure/docs/ASPNETBenchmarks.md b/src/benchmarks/gc/GC.Infrastructure/docs/ASPNETBenchmarks.md new file mode 100644 index 00000000000..337336ac304 --- /dev/null +++ b/src/benchmarks/gc/GC.Infrastructure/docs/ASPNETBenchmarks.md @@ -0,0 +1,30 @@ +# ASP.NET Benchmarks + +## Troubleshooting + +There are four main types of errors while running ASP.NET Benchmarks using crank and these are: + +### 1. Inability To Connect To The Server + +The typical error message associated with this is of the following form: + +``` +The specified endpoint url 'http://asp-citrine-win:5001' for 'application' is invalid or not responsive: "No such host is known. (asp-citrine-win:5001)" +``` + +This is as a result of not being connected to CorpNet. To troubleshoot this issue, ensure you are connected to CorpNet by making sure your VPN is appropriately set: +![image](./images/CorpNetConnected.png) + +Additionally, the reason for the error could be because the associated machine is down. Reaching out to the appropriate ASP.NET machine owners is the best option here. + +### 2. Incorrect Crank Arguments + +Fix arguments by refering to [this](https://github.com/dotnet/crank/blob/main/src/Microsoft.Crank.Controller/README.md) document. If you are still experiencing issues even though you have checked that the crank commands are correct, ensure that you have the latest version of crank. + +### 3. Test Failures + +The test failures could be as a result of either runtime failures or failures of running the benchmark on the managed side of things. For both of these issues examine the log file to identify the reasons. + +### 4. Missing Artifacts + +For the case of missing artifacts such as missing traces, examine the log file for the exception reasons. \ No newline at end of file diff --git a/src/benchmarks/gc/GC.Infrastructure/docs/images/CorpNetConnected.png b/src/benchmarks/gc/GC.Infrastructure/docs/images/CorpNetConnected.png new file mode 100644 index 0000000000000000000000000000000000000000..d21b0653b7fd5804cbfcb570e1e13a50bb061b93 GIT binary patch literal 102463 zcmce;WmKD6*EO63E$*%XiWV;giW8)`Qz%|aDef-8Ln=@Tg%(e7FYZopEAB4E-Q^AE zocn(4eZTSi`o>5`M)D)qy0X`vd#$A9{>C+!TF^qf`@*6MS zH(k7cyyrdWOVs293jQSHM&Xb9d^6%@CMJ1qm_BWEtJn;FPJ&E4D<0b#KfNwKJ}e zKJ&DIKtKz*Ul82D;wf=h044%`rD4yV2bTlR0Z?N^P4p>!K?sz!5hz!Oct`J8yZPCO zAT;HKRSFU=fp6m#qCf;we6SI|Q0wR~VbG=dr_#j2Pc6wJ zr0^4zDH2h{{6*L;N;lac5yKNDAptO5xYK7tuQ4EdU)e1b&hGYt07W&tj_Xka;e?s1 z970@RW$6+_Kyq>CXj8NKcF(iPwy0+P82eMvs4{oWs&dnbGT#)*s0qS(AyeefQ8h&n zJ%d!s7j?9W5iD(%$fn?!tFMoz?G3}q#2(N5IiFZORwz_k8TCR_3$6Q@R=A*WD+Sxj2SjSFZt)eD+>-Jt zQgG1f$JYX@)A}SvsVG#b6Q=JLIYh~9TM7&oL-gEPZy1*OCFXJW?#xg)}zw6a~9W^7ESV#5)5+_e#{s$&ZLRP!YH#yxCAsClIL-+LX>n0D!fbGH29wTmAO`g z5lD{%76Ae*?zr%4rBOzm7dwDw9U9zQ7BI$2+D}@UGHzfd+aHqcdW;^Jh!8nZJng+G z*&6zwbc@m-Sq=T&XFWX`W~ zd)C|>^&T3$!^TEUEwtL*%tpg0qxy_j@d#bqYF9wuR$%f8F`>9foiqpdQ}^RVH6SB` zAZ#vFybK4d7G5FygtE}nm2fGe@0UEy)3uRY3SB9~Zd;5RRFz&$^R(YMjdYajlrG%( zpAB4`n#10ea45TD+AZ^<4u|8R%^HVI5gSJyeCcr~D*K3I{6RMQ-*G9tC->-uK%VtGM8jdPOCMEhOTpM6=FiLrxk6xH z%y%`E<+taIAj0frKM567FWorgNu%|Srlq-oBQ81=If5viIuU+SiO=IBy0}Dy7h45i z#$}443OQ2*Tgy6ikm~b_d1SV7H=Jk{4q$XzdNQ)wU_YyUoDMV|&e1kTd@KmXRAl-7 z(IC?~ahs4W?R)pQz6HttciALmYbjRl-=S^acBDK#@;QKdZ{V=B%Tt|f=1y~tY(-K& z-81K$g_Ny!9O|7ibapUH^NZaTE~$`OSs3&=gmpR6;t}jq#2wWRNDUBtV<{L-zhbfykOej?N4>0u!rRPBrI97bZEw1epINc&yajKBt~GnCdiO8vA+4b z33E8bQ>nx3#d@aZdc5^io`ipR(ydfN~kH^4lqw3lA}_aI2ug{U@E%{ zyVS*n5&#W;RKO2WakfF>e-3Wcsrjy>;}W!-U-o_+7ZSJEwzg4)arc>H8GlHMH9!!v z#MzM%SdhJfTBDv|;QI`P-2Ga(pjOc5cuiBT=sf)qz0N}FC*2YOZJ@Xaff^RuV{Bdx z84RyN7tDg-(Ml*Id)yKytR;QUX7HQj*`KapK^zOr?rZ>?JLU#j#bFBIRQtWgG9Y zjg8J5$%W;;#ng1h+&Y*|y{91iBdjvaG1C3#^cuTUjjW3_$nT|R zXih(4sxjD;J7{?bjX2Bz6KqL~hW^+k_q||?Q;}N%qXA+tq*gP-kL(FO!6;hVTXO+# zL9|-6G+;B6MZPSQ@j1>(1i>zjTC%A7dEG)XPablmYzit<27v3Zm`Ri2w!x0mFF$bJ zMd0~WGC&rdiNhsSyuOcA|8dI!Rp}LR55FS=v+{rN?olQkVo3V*@_MyHqe?xTKrGT~ z2^`>sV6Kp9_#S2p138%iBw-Wz0HIp|+K~f3;*J3=?t_ho@~Bd|-bO4*g>@NFh_&#c&%rDs#ftdP-4M ztTO^mC7y)6oS6GN-W7w12$Vg73tkZ%={{KzV-zPxPOrkeHk$*3U|9+dqSsJfWxKCX z%dsGuA=4-)*r%pS&{75zj8%)k65c+J5<&m}2fiXedqoaLxjEnD!JZP5_3)`PI9&jD zQL1w-F-=ZaIto5*+VhjC{x)(GdeRpu;MdVQX`d2e;A{jqD&&c912@27MNq;=gD}_= ztRVnbl$N$r{z;BtVlf};sLbmgCamh>W&U~g9Rbxvi|&3dQU99+a6V{6LfGQ#aP*su zIJLJ)Utjy5py2keD#C(ZR6wL=qRD?Lp%E;-q0iuoHzvq1ooR zNHRNS1;LAuQ(iZeoCQg$01TwiCDWZZDwO@yO6xduy$C^hLeQJ1Fe@&4xH08lfnUhFvUr!Uk26Dr&&! zlAkS%W) zrN~v3;GE*uN8uu~3d%i$b3Ddg+-qFpkeAx{V+aja&@9R(%~B!?L}T$Lp?Iiazs?bE z!U>=VMuZhY;r~&=Vx{WODfY0uSlz8JC)}py$MT@IhzrFpVs)~%zv$!22OXTCa@~^PKGcq4oVKO8x{YPv}4T+!v_Xw~M0j*{tYDc!58uMBV zvx_?-;&-@{O(Z~4DUZR=Nj#`++Ga&bmAfzqUh;IxQKgFPDcvs2}B8>V~ zc{EZj<7M_2;)*b8zT&~&%6BPvM9A}=0GJCYuYABJIhJsH#t zqW)j?{+TgnD7_yY5VBGY4bz-(>vKCwsAWg{Ni2RRH=2>S;)`l4(uggH2p?(`zNZ_u zG!CR1oTS&BKFg|GHh}XsAYnpOGuk4Dv2rs@XG=*Xw<~N)m=XT8?nS8X_Awj-Mcf|S z>J*w}9r4X*V8Z-WWN+mwNH^PL&|l@1eR9Y2W+K)Q4g!^9#JA6AkR-vq!lkQ5@}5W= zkFmY&7+;ZZl;D+{HitX1s9J5cOCsp_KF18cl?BvlK76$xKxDY}+wAp?qfu^cWa74m zVh^K_uiOf%lT@SyEQg%|BY-!%i%N%Ia6Pxs!f?z5CiDYlpedl3K5O@0X3wLAQ7zVG zk)V2-3tcBfvx9}b6=+cklfv^GL!)~OoVEiUIg}s&mWs7j#(2c5EP`Gmie)6+2QsQ; zp#=2{0keLmB5#alN<~3M{nBYi3&2VlO)El|-B{jqJ%#@>+71 zV@Q?&d?+?EEWDs@0SxD|Wh=e8e#P+!Zom7TKOc+*bt2j&O)dgnQ*fqhsBunPv2WQ6 zV<~Z#fd_C}UXJe_=cBkq`1A!^%C?SVwCX^ECD|jfof2TGnjIVw3^c+0jKk(ygvJ?s zwPCGyjf&AETkkf)a0%7LEuI6Ef72u?$0$P})HYv;DM8b}=>Lt>iv^%OO zp_N&P!HLo_w6G&{gEyVGh*JV1n5t~StC}*rz3<$;?xclL6J-%?8Q@yQ*KXKhw<6#5 zaymNz&%J`9XSOaE8nvD%n<~O(QQMF>N(C%zKEcbG9J-6c^irbGT(*czinbuYJE0ec#r4u7%|44NHkzShe4 z@)t3s%nr}u8Ahdyo3%$R88ve+v1m{d7b=R;j0(3w9QMs62HUlpT-si1Gjcmq>*vKK zxDouo4CjDv>&Ft=Q{Ak9SpaDGFMkR2B92+ne-bVcyyVto75!|Htfn?f=1?B;-?6IT zcXj_MCW%JBrGFQqt3o7x2>N$tS7UZuuM!5x=a+*F-T35b$E@(KVE}aqwcpT3T{Hi}^%Fv2oS%BUC(>@B+5|Sb7AXJR zKj1wh%QNMk0%WW6|4kbuS9_aG_7UxVqnrz}j2u%TxnhJ-eQ4YmCe;Nb$tX6cTCKCm zq2lEB4@nTNNtgZ@KFnQ%$&>OmV3WP8V(#Y-p$LJnL}6)0_ZWQ-3PqN3Y2*J9mYCQ* z>3^rrYEin0^1rd2$W|7QW(3XIVq386lFCtHe_K0nlXAvfZM4hyP-cAzpaP&KV)G*U z=#+^`wP9z1HVkObuxYYh2)yJMKyiv*XGCN{X{zb|2HGorv;6;tv=+~KNUGj*wMS~< z(SY<5JD@hadDYBv!cr<^gk3<^#*#nIWNH16o8SK$kU|0+;t4HtGuIl$>ef3<3MGP5 zfOrh@cYDJ*7|5@hprU}~0@_Iq)KGCKqijQ4IdS+n#JE>|ye5_WRfo%puC)sA!UyS)X} z>dI>^77R9_ibMDUr0B~C+<>f^+~Zh62wG@8f=a&SkcA!5%tZC#4X%q62TdQ`eEk?? z%X7A|faj!*v-Zyg*>pJ|to#n9xy~s5UkOLBn+Ye1b41bU6@+^VC|LaHsKWo(t(*j^ z56P0x|7a`QX9sL!ca=g%2yN+8Wy;vp3?rI3%&;=-6J^-)+9LZbY6=l6!%6F9dpX{2 zUg7Tjup=o}%n9^7#)`AP3_wv%%jnB-HA%61XA|MUCd+^KsH1Nmbx62l7ED)bRZJ^x zqHp4rNw@dw>#&wYwGDelWPse;V|5@wW@cNHI(-NfSQKWvT^|R;P7{hg9IMDAYpix06`)(h>1C8+fwrO!4N=H{ zgi`xgC|ygJ_>8T809x4kQN#?7S@Qn%%~xk}HY4MP!8sC%ANF=h$E<|bYr^LuY6kt) z#ZPDGPJ2AXF8!8-&>yMZCw+Y5JGZgp0bQ0Z7{op_Ilqn3R`;F%fgj;A zb1QZfu@JD8JNWwb%<-Ux7aP3(u{$QOll1IlJ|E3e5my2_Gn`m3P`qD1SP zBU%cHne1CV zcE4PUFKaM5ymXDXKhFX=NbsV8xmR2$LBfTwuRnGgv{c*B$_DV1pUVxKXvUtU>CB#Q z2?TB=)BCsbEL>He&t6qDxn0!Q2TZC|o;{to@X0Bx6nYl)-Z!Ri>W?H5XYcRM?|;)a?({bH!7!^`b%Sm2 zPI_5>VTdgPwW*~v3rf5z&1l^`#|>4}s4DR(sDFvK^dZwTG5PX6o& zC@f-w&u0XsG?@oNL_q=R(r>0a4<_TTzNKD%yR6eegn}Y|Sey$A3s&k2B9D9a{acoJ z$)#j^@%pN&5q#=vcgOo=p4y4bDc4T`shbd;`GNPvnh~-!w*g|YzH`?SJAt=v{E~+D zXmeTRdKOHI8_uSUEKjpuE(pJE@Zb5Ns%D9~<&LriY0ZOjRZQkVbYt#Ie-!KJJc!mQZF%g^C4A&zf(*4G zaB@EX{;tXiRRo5GCugluvs2o8!T;1ToT>b|qK-5DIY+LNR32ek*;QgcbqxpU_EDON zH)w5jJ4Rv`Ve}HX+=zFW9j8_quS(~rSOXTvl*0oJ=YVnp+2FqpQ{6Jrl{@g*RFZUj zyl<08;`gKAxyjVco8nX_g-vvjgCXY z3El*aR2<&fs}sha$&QU(Pc`?kFRywuSbHKFH}B?bPYeVJPzZ}&;s)uL3{nW-@2q->GS;*<*kM0@?%k&9`B1o4XOFGDcuuW&;urI60)E4IJtwXH@o+{;_%ug`w*=m5V)encK;jPj z#aM}n5d*7SLAJo4jdx9#6-DW}5*j-ua8n*vWyEB7>!*`XCux9}?_e8#Vv_iV+hS6% zY}Aj3Wg9?#vZGJ2SVOSZjB;eJHS3w_QnQL6oX3kkZ7B05t~mOVUK8*HS5cS6-T=RL zAx!ry-Pmv?N3D+kf>asrYNH`Svt^!i;j>Mua} zZuR4*>;}YFOk7Cw!NFNdM5;%okIAv%R}}jVcj4IMgO&7xCB8!rZ^5N(_0*#Mz&h;U zSz!hmqQE_pCNH7rF(*BpR}EN8_V#$h9eq2uBtZ1XqTabrx0Oae;+AbH7Gq0okO!VG zly&vC-ucoX4v=HmdfWb+yAcB(QeRWy(Tax*NdDDZb@`4{V$!wmTpv~Zpn^eOf z%CvPBG;gAblU0D#>HYUw?7UbTh0-{Y{gt6~0b(QzXzI+41;ywGC1O8}a%%{KjcCB} zy^or|%-GEGb^2C@yW9#*0IK8iD1)ES#eEZzR{{D`J!NJwB-X&y#ka67l+tZAjw-zP z+T&1m-~7Yb`s7tME79k48Y0OIx`h`DTAj>mR^?1akaxw_iTq|>|D?o%^rY)zE~QBF z1Gb3ZBQq4kyzhDIM3Rpblw?uqlx%VBe7Z-@iMvE-lEy&@BKRsum1`vuN7bNWeZ=Kt z=E~|gjCKPQNIJ1*yV&ja8m-fJJlu{yad6;PcY3rvz9#d+axr0xicE*I zqKWul3GR#OhwKM7kk{)W$~jR4Lo^D=dmiO9F=g|<*L+0sMM;P_Y;=d}jGTk3ZNGz6 z=W|{FSoZcKvQAp$xw8|V!CS&S>S0?y_mLw39CE&=dC9qm>|R)La~P+&VR$;zoHlTS zWd0v81Kgl2lY1{l01^k zyX(aZSV}DP`XjMjpmK%$=sPwkMh+s%O8r>7J_=ZK-e13sOJ?a3#5=tGpH(u+r3>n^ z?EsGHs~l8Ty@L97&HzIJ;_a}qy-B&Ul1C9W9fltCgg1rxvNVu4W7&cy@^2A!CoctbN7+H`?k+~h;<6vcZY6iFBCpw#^0 z=_~4ROE#PQ==DosjV2NliM0NYmk7hA2GMupfbrg(DZo!vR_i^UJGxK>jfem_-EP{= zxje-Wz~w5Pu3vFmeAu=CgeX?Ydt~E`X#b$f`mdDT3CBKL2yyCasrnm3&A*7CEv0+W z{8c|4@L#{bf4rp&+Gu1D8t$?OQ;csvvYY1*s^~RC({dN(Wu?sV2`7ltL;DVF7noLs ze74-g=v>r@F&}cvDP;+R}My{k%R54$+ZLp4Vs)cT9^_|T8^>E9fx z9OJmI^q;X73eeu}*6f)M_fQs5%fAqU_Y26mJrYe!vhA;8Y8nI%wypqX-$70%t=2Kw zE}j+XxQtudXlitWZyaV#G~J-A3rUeeV)YFhOP!o!_8SZ^Z!VpGa?^{gkz9W11rXv+ z(oD{_5ZFvQR74j$i~WQJ{A*pK+_3=nE9OP&qGQY5VAiTIGb9SiiM?0XMiBEdol#WR z_nup~U37i6;uEH{T`^njK>OmuZPE)(%~>5^YJU_M@CKgzlYgfgsKvJP^P8GC9SiT- zpUH3&UanV!nFN_KQ_q*=>O0d9a`je2b(o~yo<5_lI<`uG8IQ3o$)Pcs=}x@Fa~E(+ zvez^lqH%(F6+%Ktjs8lyvRG$cw&1FO5J#6J5@&`pPc@`hwHxi?ETH9eipPE6&F{x1 zqmp(5A}pJu)8EO zjBi`{19dY!2sR77Z-|DmR-7ltOTyO*(=DVt7E&qO-S71R^oD{|2c$=d4;h5X2f<+L z0P(RGeqFM3rHAjEY6xr>+3^TwIJchm#9Dgml>^(cw{{!uCB3JT_g$jYze9QL!rz}n zs1A4&ierK`kjVAZG*`cIvs2>yPPoC0%fI48l{~X;zXgVZ!eK{g4G2BL-_=lUsOxzW3wm0T!l?ooWx&6;DtablZe?VrcqSw$6aoMTTyQp=}Fq+{catK;sVh)4@7GG}_^UQqrZ zeolfa>jqH&x>-E8CI8u_{Uax7g(%EhE=YAvbcXZ$#LEnnYLtcf-qcH;{gdugzx}5B zLG}CX`ys7e3>2Zh*z!@i!aO?;LcW8#>(SbvtpfqqWV9bj$SJf-@W+mO1gLI zSwX^>gB?{r8lAI_o{TBCTz5=zkHdYCykbM54rFZCAnpOl18+J5Rs7D%Qg7k<^~<=9 zUMS%3XN`v+B`-oGFACm@Z)XQyW#3;1-tR-)rel<9GH_-2NnF1v^nMi_>Pl*(j~DJbwfk2Iq%_tulx;11<=zgL#wsZyPo;N<}b9r|BuXZ011$8b(PY!Ii zHfcHD)JWEMGNl}NNBNb?;`MTp`fVjkuGj|LMXl7E1&YPq_-rZ%ff(-a7%`GG8#DK0 zi|`#Nc}yd=>?bvNvOHe!q3Srh-%Z?KnJyqnfu>a!9`8+AdK;xd;*^8X{mYd7%Q4ei zT^vXM?N_89GH93a*$OH^uSh3!rSpxeK(QN2?t_scphe2H>s-Rk zLm3p0F2^96!?T6VEIQE6gSJWmS^PhAi6++iTgF9=EzgL5Yi)RC9=Sf;St<3vK-q@N zl0o@#?E!L+Ie4u&iY=cuJw`Sa>Z-Fy(2U#-zCBb*c5HJAav@-Ata38dltbv}c}myu zE#WuJE!Qw+tZ0||l-REGx@}zFh`J3N4{VvZku~kD3tU?$5*30d<$1LZqPgdncJB!dm-Rl! zVMPK5ThZv%7fH+x)0-RLXKiQ~$TeMeB_kqO{^MmruzdAu>&g*Dvl@IpN404rTLE8c z#Zs%zJCVFQjM`ADh#R=SNxeUw@SmGd?Iq;h#F#dGrSH<}Ic6xwsrYfE)T~e^fqxlw z3e^jOnYiQNN+7Rp?$3<}L<$+io6NIX7P{B-9UlR=!AbGd+} z!nIi=8S`9H@iddc1@&e+IUNoQnjF9uj&;0WR=+|5-cPhF6^7I`63 zBz*V$V7FoEBmMGe-BuR8<5l);vFB}B>K*xauQgT4PnY4(lDC^0UDN%Q-{iY$1*e05 zCQo#@WFB?WHR(FNJO+!m&e5GsuGa$s#Ymz(gUSwsq44Hr&Xp!L`q6ww^3KL<3;N~w zauZcuEt*c$sT`8~e>rtHGS$AxN~Px?W`<5F8!+r{UvY_2zS-1$5hK&R0RJy#r_ zFljIi)ryGwR;)tw?b~B<2C!_Y$s52Ylc1K#693GrF``LBx|feucS)aiVC8fyYQYvi z`TO4Yr8XUJNM5n4o>bT^Xi45{2HtB+?vCWUJmgvGQ5&*{pp(Yq97N4XooIl>a z8`f{S#$VMJyRS&Sc`Gs2mRCKJEOF_0w;I8hbeHZqcTPW_aS6IP)DXk7fMSAuwA%Xv z#dM3~dgSULkoJexWTGK39lhvy%&#M^&wYMNuGFdPHr_mKg6&Ey9PH}O zo+E)G8`<>PRSX8Pb};&oISnCEuwJX!t0n3#Y_RU6H2d~Fo2T#O>-8swPT9}>yR|!? zUg_@N1WIm9EBKH5(?N7^$Va0hS_u!p2cljyr@C4|mwWx&!9yF&JndCwn%uK6hmRF^ zX-Jmy>nn$v!(Y_&r#T9@!}Q3<-4eaT)o_&61xDZjh7rm8cM*C6B^S-^KwWk{k<$7sJnAFrm<|*RDP)Ym}&&ay`4zh+N#D!29#S`^5Q^tcS9MC-AbD zvT@&k|9HW$B9BNEDjHjUEy$<%0;<)qrQo=>Od~gg1i1P|h)YvH6IC|TqnNQIo)S`| zU?nfE`C8|K0N@sJ_dXv9INh#4h;wF_9QQW@PoEvEtrttKhEqG<{rI}P@hkEEfE&M& zu5FCR+h2M2x`y|DoBh7oZAKR6q*nM>GT*(pGXF9c_&WN>qtOQr*eB7h)i!gwb+|!c zEBoAW=3zcom^vV9Y6wRMfqu=;@J$PyG{$}u4j&xpB|COx!C$!y0&6KMB z3~9rk-FDS)mj;MM&<2CMNIl2*GZ;k8s?U{FPqt_>efP$Z>H>ZRvd&T%8~NglFS6ux znG$F$izGi)FVevWwGPO-cpwY!Uz~BNr;_!x(a1u3K@?vO@~xAfVI!mH$-QSlnlU$} z9&G|B(GSUSx4LJg*cCA<*2PTUCYtA~l4i_%l2+*2a*pSdo-tcZIW6&~=70?%4930* zyq)z}d=5S|@-r2C43>@CgtVx#Y0lntm?~8K?ny^%!YoO@j>cX?&{3MNYakK z?n&t}lr>}p@DKetxtbKLu;TlwhUYz&X<9vx*Kwqa1!nDp!il#sPPZkt1GN74)lo$-k&x-Y0X4nZe%eB+QA}FW z2tiU*A#4am{yuV(h!~uZENxvLc2UeYxav>vLj1(QDgOavbbp5fjNV=QNZ9|XoSe$( zemngGv1q_g1m^&gp-GOgrrxSXrJMJT= z5WDVeKxWn)WXd|R{T1GZIHo!<<{T`ldEuG6y`45kk~Ys{Q3%`IJrm&^|00w&avWM& z!CS>^%`&}{Rfnl7W#^Ci!dig#Oei-31k3270!oqes(5owfl zWfcJw8NPOVe9Z}uAt9znKK+YIt8ds7o7rA8jZ z2B80RUkgP`_r~^+0z8LmNtSCGM%@f)L$7v&>%&7 zwM=k{HupOC3%~M-oIr(h=2qDcMe&2G08*{?Gk7IYmhE5Eym=XFoBR>dbIb zQHQd#EdRx`Etm{{GC~%Ge@|wTZZTZcBgj$rZ27-1_0H^(M(3N)KSDV;6$jgpd3ldv zj_bBgH*>1+vD+l#rtOR*z9g?y`=-k(`k_%i2@hD0*V1Sx1(&S)l_}g(Ngc$hMTnvx zFk3f)mG-REIkPhG%B_3vo?`4}Q0vJqsqRGIthXNQFVcHe>CMJ*e)zSc-9O10hvmm8 z?a#v>nsf1_qO}(>Pgo=It5D!!(5z2^{&!-IHBw_ea<+n7%?pD^A4V&aAZAG!hj*T*`usp5HfRmtHpaM|ef%_VsDPF)6MBM9QOo|%X@~CoqyB*DZyR7s1%QnN-qr8$OAPUBMvAu zRw45XK8dKdas~bGuowRWJ!A5Dr~0tp*;+4f3)ofU29MU2A}Vd{r!3EsaOpdFk%!wr z@cXB%GDr<)ikS`HOXV}<2s{4nw`otDXmZGfS`Y2xH+IF=ZneZ=y`m3@!RqKp2a2MX zoBw-{iHo6j_#$15arIp{02kS?P zAxens&!VuLv;%|{zT5_hvr8s-VKMGy%yOB1nQ|2p>s-2%9g56?DiAxrWYzqPB9=7w zD-PcFOv9E%jh*7^w7LPI<`^lo7>xIT7v^8Y-*foB&$oH?%W|fG{IK-G98;@cg5|Jt*z@#f?5IN@zdM4^63M32uA!A|A@Sf&s;Z%5>uDb+NoML zhKs^-st2l&&CA22a1g@zr>_eBLJeORNe_)Zc*Q}zmlA^P$0I1$dO_V zca0$MF<1hok)bkK-hkMIP4crq{+g~vIr1d1dZ0!jWfA{?sK>D@nasd*&|%^5I?r8= zD#NjmFuFEr4e&*n<9Kk{nbCQ%^%{~9_`yuwvHlHQi|S88Lte8?izUWhtRGmWyQv;` zPo%5X(tpn70&adz!1n!AT|w?qt>u1|PV}D8sYGFek+iRzHkunKshzc9Bd}ay_rP`L zPHa8i;r1%=9$M&e9GT)aK>Zi2SDmZlb=;mC=V<7hXAC5XjBt~DR%QenY3c|#d5v#Z zNWZejE?!P3wG62UX#McCqH=ee$KX2g;Sii84j^@E^EarT5(Y)2gc%@2$rpt)j#%j- zY+9H|MoAT{3e^6slXL7(R<1v)V=>-&FkIYl`E&md{$DZ%?^$05|5f~kWbwCcbFST9 z1naqNGv4A?6_SC%u`{QgvgXI$&M+EO43gzPQmCSbaL%HfbF(5MMQ&`b#?R~s0IcH3 z71CFp7pR;zACB7{+yj)A8mr}16F)K&s1v!SI>gvU6FUgPuRrSH^k)ZTH&+tV20P(* z{iXYK^)&`1h9+$X~7!WADI~`c7;~{Qmg6 z3E;QgY=}H5WCh*9RWn8J`n~YdG#LTSL23x_CWw$inD*Z_gEpre%)0FTJ*d`Py zU7B+Bm`OhWZK-&o+D*xx2RZ)$Bhn@)aefGK6ynzCe?OVmfbj5q%v-x-V%L5xv6}wu zX6F9-VS@1NZkE0>V*lXS`F{4o^?u>U!ridK&E)l-?^>>RPw)Emlek+}AIr34@*aOW zzbhxUs!MgeH3|JsRTCQvD^T8~?4LK?&(v(sO98@fJ$EZ6j*Q1h;7O2-y2EfXFGd!sD7Ke^i3N7yuVyM(KShZ$mMKQ`XQT7Rva(a(E_ zppBf({$Y(lo{^0lMN_!!B1(e!F55HD8+P&n4`v1KkM6x5MhHkb&LwhacQYB%csJ!o zYLP!@SxMXFdIsOE7pBTj_J^3>tA3jaRimeG`%R(r^GTK$R{o4(z^ioDyLEl$H z0P*c>Ffc|U@sh!$`-HLgT3ozofVa@M&EqJLv+%RK&8S+)JX5|3r9Frc2U&3vB|wWU z8pI=EP->yV8BX{oMVm9>O2~t(voek_s7>%4y0VoO0PnXLWRxTtWnzWIAVeu#e*963 zUPpP}8iBn$VHv_ITBc@-ENpf+ST>1mt(noO!T=`+9Vzpay8%$QT?Elw@WT2)|9ORhtNsy+%MUa+O zkVRp={G(jaWcb5Km^7jpX@r9@`iT9QgOEhBG~<5)er9C;DI@EaHwhnhsFE=!O8^nZ zA397Svv$DpZO1Sx5t|punvbD*9`m8TMyoau(Y-{JDIJ92yEbrm6AhnBiB>52{N=@lV6fZ}k{0-h%|8St!~N z;i+;smP<2@@X9rrtkI!hB`;r~JO0X8Q-dwRL6NvASKd z^y8=KFVMDN?71*di-zQ<2iu&;_HmPQW)_qzpjE7bZHvf$my{)QgiHGuQsr&?n`vD% zidM{ET!XYmXoHAqDDu7FlGEeoL&JTze-B{UyD1ZnLI8QN+|nr7+cO5iu+|>q>u)+d7Lzl0gx5{`{C` zz!Iaj?3M1L5)N$$YJYLIC=2=Y@&11|Cud6_X7o88`IEh3z>hI*LNvdj)D3NGhkv7Y z^6)-k1MvB-5+I~g)P-m39&eJm#sG0SMj9_<^XMR`PO(mil)hzxO<)F%(yC~rQ=HYx zpASuBRN8c!&Fmjay-k|Apd(2VjX3|+QHZFpTBCSy6n>r1LK95k2rmyF&6#=`2ZMaZ z`zaTT(fx_L?kOacf$F~ma(Hkv@t0xI%l|G2s}4e3{nAC?y&8S0=x5!acl0!Ty_l8v zhq1jxPG;ozM8oMwpJeTK1JN|%F5@8FzibHRWREnXOQUlr6}yP~5!EvE>^~|Xi@fcI zEkpjE|5Xt$B|*abe;35>)~lo|gZkvZ6R?1g|Dqt(o~2lx4R*qaVbK%N+>Btb;a$Jf z)6@YvVKI7p$EYHUb*;p7e=tb6md5&h1Z;C?$L)y_W(rJ-HTtbhb>%msQVwq&Sa58Z z0U$b><-1(^e^SKXXdm7D)f^15NaF}n?v*m1$Qy<9pWiJP&k*Mwe?(s^m-3Z+sN_Qe%a*4F7M;>7BUo|JevgQ-0iPkoc(&3vI}4_3tuvLk z@j%u$kp{PH3?o2NZJZa6$_U`!7#s@s=F(dqGX8) z|1SeVCM1z9-=s7l9y6pjlAV0-<$pB+MrXTSzsi$X@>7d`hX^@?fBHUWStQThXBAh3 zuT_=^SuGpGk8~K7QlA0gN~x7QJ&t!2#G6qnp&VvXl5fGo;j{L@wBF_#mtW9jnKGju4g{PQkRM%z}# z%^XjA(_%HF5BaYY>}6S@xsx#V&;+e?Jrv$dFuB!ADBJkXW5Pf5prMaco9|ww0lOl} z23AvlZ_p$E8lz3T+y3am5jJ4Vi6#r_W~sZ6lB_K-)r=nep+KmU9L2%M(oJ9~N+_#H zMwub`*$_r2SDmsh=pag)*IXEvuk7|ctSb`db;=QP17T(}jZ1hhkL_yzTldaTdHjDk zdkcrC_Wk>NhR$IIhLo5YIz&pOYlf8Wl9Dcw2BjNCLJ*`GxjnN@rew zOxlJoLQP#Bz6e;jR#Zn>|E-q&r%K+NBU8wb9i?-=!~>uh?!Z=nKXRQ#2N&(fXX5jx zf63~H+UotSuaL%T5WXKaTVLa6Gs{fcnNmpnh!9*2Gh);YZ!X)z=tU_-qL3PU^4jK< zc{up@%9MrfJos=t{ud{!eebVQC2T%gj*_WUn;8{-Yn>40LQ;kc%&fUIMYeHwQU$8a z#qeJFqtLOWG#)>2&5#lzlGpB#hjXGviC1iqbPKcgp8Xa6-LrVyqzxbh@~X(4CEWYH zN+Aas6L)d6)&F?4bQd9DydKjQm?P--#X&}7&#g|bj%R9kQtV{Bw2%&=+&+)bvboN0 z{3&_jQohDl7&Tbgkrm4Aa7oSC5OVnR$1tEnh%!1JIKuYF5b16KGH)XWXq zEhd4HCCr9qtF*ioA&Pd|;_FvHk+^LH!sRC#==4&^z;DJHa;B<`vrTN1PBG5Nf9t{c zleNE2w*TDpY~aB&pm@B4iPIx{6B&4!bP9?et~_Q<_Nl=pH|(K_jO4#@_rJw&*8uk^ zo*Z9_0B{bdh%cPFq+^9dQ+hdbXZ{1(-BEz#@;x^Eqt7ix*a6j6D!piP>d)hJIIWo1 zS=)~Y<`J`jk<#G9IkBAa><9_wBbPdgI+_S3_@bP`0uy=ZP^HJ6(2XWsjX?PWS|50~U@E;e|ZBjFSe4VSRaOhK_#uH+Nr@+1L zrPsvc0p;e(DUROPQs@rVJU7*TcrZKTI-W97^~pjXP@8}-vRLkDp0PM=FdmBFgr_m9 z8lF|a6J8LH8Y_58Sf7RJPP|XKU=d~~)sR{^7iO#q_@Q30&&K}4=DUp$$>%KzkWhJ? z{2y$-P9TOQEr%gYGusbFfatRz+@Maf;L`}$p)u*0zh2X>!T-1>Yu|V7@laXK-^O6w zd+vlbtewa@bF8K}sz)LxyX@k8?DvoFbsI@Amu8N_=6EGIxGOoA%JU0G^M$sR@2mZX z`ec6^k^iec@v2dXdRs_r&e!r#u{5!l`w@@8b_A6tD8#f2lcHTTq)$F*owXCn>`eE{Od=7y zKfi%VUdT;-LLCrR>-m=L2194RLc7Q3%zUE-S_b`+pxqdK=~$u#u0@RW!ye=)u8MeS zpAY3C&(MQXqMvLAoDqo_t_7}x@4a7-re4UHcppjaKO9-XWBJzHi?lajScx@JLO-ys zteU4UT{UJokwZ7=@aupRO5>5$2w)AzOiC={9P0H74O9tPF+>@}Ww_KAW?xW(wTQb0 zI;x+%1NO4Pk9opr>mY@D;i>Y)0T+vX2B~(1(x$Yxv9@ux24$CpL`<*Z zLC{syWI?ex!|+H`>geq@>=qtZyxiL;Fb!JG{XwdUw+yY>wt$2~hm0I(uFrn9gByWq zUdq_Z{Z=%xpZl#%r!GtJn$((LVux!;s7=x4_mL2p$il^{7UTP<*S5`mEO`DhV= zgzv52Uo_Ce#;E~A8DfZa60S|iBl$eL>Uc8tgq*}61l;_?rs zu1S1a8+e|Npky9y!Y#H2=gy=T-=2M*SQC~T=;Q;9D~B&HXsZN${uX@cPROQSUVI;G zuZj7s?M6cr3ThxX436 zUctv!bl>1((I?pjUwnh&^lmRDfbO7E3w^`oVz;8?2?PLveM7?SZ%D1hrJRH}A` zlj~^_99hWhS(ExUT;HU_g-mL)@8<34gi$ixZJO~Pi1j0-re3$_s9*qh9Yz3qjG8`Q!+kA<(~P z7G#acCeJ4DrYV^aLOP&2DKD&;uFf49oxm<{gx#rFr@#EGE{ce}widUjs|Pc;owtl- zL^g6kgB$9SqA`8&yCrYl1`QI(*mDKfo|N7qU-eSp~oxa~91% z7)O}sitL6Nt{c(i4m+^~zj%@>6Ew>=uN;<&w!CGuWIp2mQds0x*77*t!UJ4az~Hw+ zjC+KR^`-GJ)YPvcK)KBY3~Ay9zf08z&>OWn3M3If7IF)Tv;di`>nE(SS=}NquOqHa<_}UI*UPy}oseB~#dv$Eu{!M?@LvulaF<_ND z?bd{Y%bja`ym9ckSBl6!W@BZsG%IKtor5`JNG<$Q2kQRZBkp3_|0ZE8m(nQ9%ORjh z%+Oid1*2Q|0TOJvn*mytQb1fFTHusD3%3p`ZRb2at^|w?c0#WeTr?#HK8i+X)pAL^ zX;uT^Je*JqmXrDge7nT z(|+U5yx+#5n_@hNW;|q(TzN44lIBwi5@#-11Ld()D#LB_V=+e&VRF^B2(y#Xds*>t!&5&JQWY!^OBqKTW%l~f*>=#69f)%RUH zDS9>}?c!>eWH8Ymd43GSebI!=!Xs%=dYfggMdq67jS-i@p>VLKI5$oIXoOsWxF3{o zpvZTbIBsZ7U4!j{U6Z9~q-!)X_R0Hw7F;%f($U7U*b>19zHPy*C?h1weCs)l0F&7O zfBoWPlp=NTi2b-rdSTrn zQ7PHoV;G);45lF{o$uJ$Z05dy* zVZm237@{~NCLSiQNtHtu%^wLaaQ2jY6$q2Q9sRJZHciNU`PHHf|K#h*=udL2bO;IR zRd;;!IZ+~>K^<1u0AO#5#9+tB@PcF>BX2ryphGBZ>5tG+Yf>^ zTv+12nckxCN*rDzF6A?m3-9*&#v9A)O>eO^n++dZ?=^WnP`)ZfS2dYh`=SxYLN=Y- z#+!CQ7YRzyd&Npf$Iu8CPxgH31SNBO`i(`4I7r_#Q2{QB4~)B_R9rYi=L#O&Wlwz@ zb6@Dfg`49aqf;<`^qr@k$?{^tmZGS2yn3}xmL`iT!_`3%HZ_%-+_oyVwI?P0x?X+_ zlp~-Qa=kB?9SyD#f8#c>_;A#m)CgTEfO%wA3UFgAVkWfx;tEiL1Vp{czCjjFM1-Dl zA;)0=E3hft47IMeqn2bx=sy`$c-uihJLN|CCo&X4wA=-}v9}os%Ijp656sXHW7Wi?<`ExpdgD6yGpw_{@5qIKVImF6HX6-DO349ziC9Y(cY#SFu`Tx zr5ez7JsNjyj{-EgkjMDA`sqqE9d*tVna96SVYh)#cH}s)6FyR!`ta2Dbe~J&sNV(H zDZ!(j)0uk@A|G1lhV}8$R0v=&VUkb#K6x>>mB}bEbCRq_67nzb$4MshCKfo@)7VN7 zb7#tJ-aQ=~m{2E7(gKeL;1#m9Qqm^kl#Z5HnlyKEL8am$*R2dNJyjm|_he%4i-v<= z55MBk`%{A_Mv`|&i*RxLI3qFSczJ7!t=H1;rQyU{@MIID|K-cN+c@ zRAGR#9bXPF1hQX>4N(zNZ@D9Xlc?mGZ~~ZBt5BD$ ze)h`FCiHB8Nd`VBj@@48wzrfRE4nfi{S9n$k+ZXx@W!pVIryS`)r;o^#-zuFcN9iG za@K9{ufIU!Y7x>B9BU`(2NWxe27EJ)w#SByR3?;>FL-BY6_I1*$236ka-VR@e3Bo! z2PQJrjFES{4meW9S`n>?;-zdrqxYbBuNU8aUwTIQE@})N3*~l@+5~ z-RaLh+R-T$5;wEQo4;Yinz!%!LBzQ+Vuav&S+BAAkk-nfrkQ=g1_ImX>`)I#UcAe)FB6uHGE zAOH)QHiQW<=H046nxOO=UY#afHepU@Bp~7J7BAS}@MxbeXuEEE@+OO?WPflcLcHry z5GX2D3)iZQDEO;G$b*J2f|PW|#yQdwV`+E!sRlb4xOzvlv-GHPm;}Cb5imQb@n~12 zO#upWIHcpK4SGGIObiba$AwvsM=9gE*OG9v1hvcTz_f3NaDB1#TTWY;z=yhtjs)wb zZL`}EYKFlLFzYx)k2}1Y7u$j#FMZ0F8oKWFnhcBgPrlv6`BY{I z;9fM+jJaaFpC#0wDsqvS9;Al~25A$^3?L4|00GNV-Sque9+UT!G;RRZMDXb>aE5L&X~Rtgc-)M(SY$(D9+gcmy>5@SS8xV6GGa`Ln1mp3*6>;qmNf=8w|F^pf2 z@Tl%mEx2FYa%P-x$F+4w}Krh zeB5bHmS0Ks;-t00Q1hnraHQmRZ@M?p_#m zZ(JW_k=F8fgdmTgQ!r1ID@W%mCsFRrSoI5?7gyTp8PqzDbRcgCyF~b{%8aEyHpHXl z2KbVZCW)Rw77yqyRFS*VIUGq|79fQVDMeaQy?Hvgk#r^U5&&5&ahaj{&Nb}@6To-1 zAs({^Zb&f39crQZDXLZUdhAoU7^bxCxf3EAuB}dEB_?&2`N$Eh^t5rVuqP9;gEgo6w2sQJ1@xr z-MKSjxSx=2GB=dR=8w0_pi~cLFapIcLB-gxP(e(h!{e-2R6X8dhaf^IlFiW3asBe_ zwjmeIw@*}nY1IFTE7*_Xyv^ez*WN+wt&UX!Ab=L#{j6)%DS*BR$N8aO>pgom8;;8t zzpYH+aA1Xxt~2k`Stvf|wN~j8(@Pr(@8E*6$8Hw7J{f_GZD+dLwu{E4Sf&iT9M6q@f)i+kDsW70r&6u+_2}`$b(j zZ%087$Rv2O){!P&!-nc=EMyVr*}yhBu`28w-vL(;=Rk$>;M&7yIK&MTvM4etlM0jjJa3g0Br@3*zl53%xwn@@Gb`=ML z8qgSP@g%o`Gv=N-{hdP8?)Bxxkd7efAIsslg06qw4%4`wU2|qkt)EJ|{JI`cE9E;h znH+5pGGq>Q#o{n%QKL=eoyT3P)G$~9J7D^Am*Q|Qgu~D zI55eAs|`LP1C{rV1*)0X0Tj?oh&pW1_6<+G2a(8}+P}=ofvNjpx%{Kyn&}11v_O0L zgwvUm_@uJz=%{PVdfv1|gt{|X3duN3PZx$CUJ%Sk-LL^VfA0VVJLE@+q~M5mRKhH8 zW`FEM;%SX(y(l=06O9ezl_vyNgu3?ES%Hm>c1jt}Yc&hWK6We9dnCAN_I)f;knf?Q ze*BL-?03r|N#9r*JlKRzcUu!-$(cx+pOVxX_>@@(S=4mIBH0I*hRfRJ-F}vf(w#_& z(^-hL2@CIxn(nFoZdC2rL!@4TafayEuRd1S!l=k9Z zxYFlf)=n1#Cc_98`t!%;E?Aev^s3yWO*zO$qBXFiI(we#jxv;uxRCzB)h7b@i|~}j zNaFc$BV%dz2=F0eyHke0-~RmW?Fs{c6Ph$jBfwTHbQ@n#?6KLl_;$;X@ubFgO-(Uy3p3{s@RkS&kPy5lAB<3&!%;r0V9sCeH>Z;nync+EQX`O z+bP_#G^f9l+b<^^S+7}*<3}WPZ35=Dq22COqg%OI$B=RLQ;aU#OOW-0X+Cg&1+Mrn zy0HuIAI#+?-w7UItEA#aN|&Nb|2&+Iaklzv_V?>~_kQ-HNw-Ntbz|fb5$r2PfQZU| zb>A#B!rBc6sqb0ib;e8WN*KEc|5`gIz1oAO!TFff%cX^sNHVj*n_h6@g~8m)&RI0s zf@>1V@djWM=f)X%t>c$P`U1Q!3%Ou{h(_)3PQxmnu-w!<$m4xa&U*23=Fm<7wMU{N z_Zum)3~E04xanBwUv$DK#Q{@#n30^&-V{TN0D&58G{(C5=44xK8_L@D`! zJ@i1GH+QttZ&Gwe;f4UgHxt42%fhc_L(h93 zte%c$TKpb%uye;uBH{K{Z09<2|H@Q~@n__Q?0_Q@?VYm}lnX zIvG*ZfVABnEG$^BwU5#e!1!tO&%TGF3st`JnKHw)WrbGX3f}ZM!vk^g6LLjvr}y_~scdl*{>JLI2CR2cZ~}ldNldrRfmPuH z2YZmkk|E=$8L)b3exPJXC*Mz~)m{KtYJ^Pt*SX6zaPYX(G!3c4Kd7KPfo+%Dm)!iG zNPmrU6i@}#PaxYpF36mPFXHbVQ-z^XBrx3l|dCI#E;CK-*KtrCSQ=Ohv&Q@LDG zBvDiYF_!UWPH=Eye^^d&J9pvM^N3pU0y^dWtjpA}ov{>>+Q!a;`{BM8_F-Evp0v3p zNES|9N)@cx|9Up46B-2nI1Eu(F)y)`qX-4bRt35Wd*Q*4m8fScGT4Q@by>TdiN;x9 zUP{N~x433u9r7<%ce%Jl`s~efc*Xm7BO!xw_Xuqa8fVnHJU$=WYbfHeyx*rt(a-`J z;r;%vb;L_=l+zTsu5h^42PnqnI*Ov5NIVLx(I#MPrHshK ze|t757HnmO#`Q$4`o2NXl~gyd zkyoR6HR|Gls{*Wp$G>#~$g4>Y6odUsm^4 zN=||5_~9<7S6#*Vl9?gyfsfy~#WEhM!q#L3NHTlXqm7cV7(DWt&PI<~>gi&lC5G=CGyryxKYABH9s0 zcf?{?GI8Dr94+jsHC8i$F!wSJt|Xysx~zC}FfKy_fzbS zSi4SVT%gb$bUtB{Cs*t6m* zp8Vd{IpLS;0?h^x6cG+aIo44x~@^4xK$AtF;>PJf3e!4ElJz1$AP%v}o0)TV72i z-(2o=&}jLiapQqYU)n&DN&%u6XF=}TSe2-FeP$RVMR$dBLs~S@$j=3EhfAI4M@^Y7 zj;bm?(&RKx)GnWI@|lLKq}nF5$KAb&LxldKQ+KNjfw4Gsq94UYX1udzh1g1b2O?rKUk_Te0DwbZY-@T|wxc1JE|)HjQhEzz zzN2AQw(-#4U!Nxv`!Bw!*|~(C8Oo}V674IpH5us(1}9CRNAa^$Ta9_AV|_t;@y>Mk zPbn8Pdfobb))M-ksEAqWKU;o8fMRr9xWkieTBB1TuoLk9Ytxf}%MG0V8v-SHeQ9cG zYNmp;t#2kA#+nc|aAMd7+#~cML+2pM<+@0T@*gd@HqwaMaLi_qsg;Nyy7%%nGEHK1B zfnB@%6Qfy!hw)}VPo9Ze428Gl&=Sbp5N(mEMY(;*Pcht7`gyH)c5)uhzO3U;;_7Dz zyKlb<42d=h^Z9c9vt-X68wg&t-6#S~gyhsitzq$$U!XmQ;GjW;zu(2)^rBdtL`Sx? z%YDD2WJap&A>V4UCvY|K%Bw4? zPcES%W;{VKIg~9*yt| zsL{Y(D2S(*t1D9KyVBw zgnDcCu1k2#2mO~MYk-U4h3<@B-VOB>Z?KN%<8A8Va?K8Cmf+Q*xZnTyjMk3hvkzaq z9`3Cs|A5@%Ji~IK-Mn&lW%1UfV?QwsjDvvTD!O$yY6@=fn4R=VT5EN44tMz#v77|| z^JX@{^-4wGsQyysf|Ih@iKsWgri5b&7QQP5nlnyR;v&n*hMrKFK zL;BDN5enF4{FU|tF~!OJl!7s)E}AjQ1#PT6W>*+1R<-&ojU*e;MhV=NMPI1Mz>l?O zJ--px?7fMu*cmhv2#|c*sH{G6+kp06%XN7JlG$Ak0XlAL)4>Wbhgs3`Ex={1h|R5% zgO!P~{Zl2|?p+V_D#rc@c?`h2o()y`W!u-7F33h;i>{T^ftVPvxM$x|&V>p-zC%s4Cmh-Zh1dexLN**6OBUuS*3N}d1lLhk(&)Do-{$+3~vSLkYmDd zu*Ue>qr!Mu%ww21Hy6To=rx(EF(#C3l{4Q;JJt|u3_XKn-DDfw@_rjm70PUr+-y9M zIC& z^f(X$+vs8$VsY@xT+fy$bP@H9U2;G(&b1ks5r_03Qc92GQ$S6rMplYkxCIZnC{i-d z>%;LP_QL%;pLY{O+C)E#iB;zwjh64zs`{)p1uR{HnZ+Gfg9TVWPYRMs% zQ*ACVmIjJt#MK@jb^X(^C0w7Aj@2omxLH+xJ1gQ}&(O9)cP{(#uA~Y=nEV4C&P{9n zX!|JUBs-N~`rB7}c+Lfat1x`27%u&3hs^e#lq^6tayTAWMWX&=;iq0C*-#?qrs=(d zF$xipEZ(?(Gg$boYUu(Rngjw$^`=+K3RO%~wOl5yN~N%`{qssWfE?PE9V5px1`ux( z=77l=ctU+LkzTQ8s3nrXdkLi>mfa8Wc6jn<5vV6)$uR<$NmYDY);?Pcfc+ye>00T( z=%iR=Te|<81R+V|;8wGdg}XtMtKWt8ogeOmQ#6PQ;epsrb!5ggh-NT=~1_byc_Hl;x6;xcD|VvgrBWp${2a~_`Sb8L835kGq# zd6~ZZoP;Y0o7y9#1k$a1nix zS9f9T8_4)w+@p-Bd{QxPADuK{8wxu5=!bX2m5I-TK#@pcll3PNghiblRdn{i>GhCY zmFh2CYTjDC)We^#X$`z#WxZAIJW@=II58Wqn$>f1+YN}*2HebIG{P{dlSJ8lbey3A z7#94edJ)jG$I@pwe?QfMF_X+4)%|)vI2(6%`XUJMkEx2Y5J-FI97tuBu+fLBbN)p= z_$K?MMk$)QxzW=nPO||jo@_m+XHgMKun5RnOJ&TszLul^A+Pwm_+u**wi>1htr=?K z@i61Q$L(hV6pyeJ`nZ(#=*>NnAGqXXyG6Fc!tGF4f_C(ROmep=G@vNi?ELBhU-bAo}$3H&nK$ zeBBnet=|O*75y^ac>!YO=L}uSt5}z9{{vGl_MA--?vGjen#Q2)-|9eTcM{Lxf~N`m z?3kbTv`0QR<~qU8n(~ioWR+nyp!`niPC!Gyt4b!3crqomi&L?C(K*ljM{|w1+9m`1 zTUr^qEM*$(9$#QS-h+t|`Na1}@vJKB<9%K{Ytv`}0Qvt|{x$Ri;S?`U{K^kxw>bef zo+K~fIMp1lsb0Gi;xTqq5p$zUr>;`Nu=^o0pJWiLNVowx$iVN9jx1G;DhJ_*=u*-y z2*9$i@dl8;hb8Re6=^5l0sFR34wEvC1G6NG^I6gcYr+2>Ze6E;TfQGz+7f+xI+<4^ zR7!38Qt1TXs#%1(LgFCz<2O)02Wab#rUlHjxE~jY6*ghGE$m96&@%Ih#+XFXqSL^@ULg zkCH?YvAxZ~A>5huh$m$Lh-m?e7bTah+$L_3Mh*-u&0Fg=13$6-u9nHTPWsE;G;dSm zUqyiQd^-M91~Tyr&W8ZoqJ=@yzfc zy7`(wV?-Y>jhhgZ{T$0pXxYY!-7Xf#I1(U1Z_BJT{auw1oc0nP%^85+pEy^-m6Y{0 zQp3~YjS!qRKOrNi?_YkTujY%xrwmENu{=q?;<8vE$-VggRh~o(W2qT9xy|g$hwHye zQ~FFbb1JD8$Co7b;!^)ydXQFufk8xdpL&t zUCAH%11*H*@lgFu&{8)LAptqB$93m%T5PQ7I0vT?-Y}h4j!MrjetSM=@O53D4C-Z_R3hmlQ!aUH-pN)u ztpP30M+&i$+_kG*WQA;ZH2+^l=0q8!Wo%3O`qpLqoyciMN+yn#6CVP!b?20bzyhckVQa+M^p+1q}xU}YV@%BaxKt&GL!R8tWv70q1*_C2$reD zdhLZhlxkYoaOE)Dl!-Vx#`R;iomLrzM~m#H2q}7@E^+)3Qudt$R}tZ7z)#r|?Zh7U zFym@_>KF&K1KQ_C#5RT`JI|K!3x?L0gi2`F7o70I{%q_x!Jj{EH#{HvUp}jl9leru zSGLx5B^O(ouAR)b#L^OX>-~>+=Rkl--kRp6tE9~^nx@Y5pqccGuHn6pxxwX8)Kx<+ z7Xbg;IVH8k?JtP#pVMoxOMO6MWIK=|8J(~iI&GVX&>~Bsl9p*EkUvM(G~+OT$tPUB zKKw8}Zqp%==<7`*ADlzDo9u;6!`N9_vqfkhkW@Oo4&Ry$a#{AWCg8Rlp^h3lr^0p? zmzXBFy}rz5(2>R#yI0r z`)u-6YU!l%j03!V>-sgFhIY>9=eKW?;Q4mEs?MA%$S&_)cWa%`K$XOp^_R;_-b4#N zM4~PMFv$e#E#njq@^0r!)bxB<6!ka<<@INGbl|+M&jain*eP9@ zN=90dj!Vx~**$+gGz7W6xdDE2v>jJaH=sI6OJdqm@ZV|}a`t};)>{JM_rtX-DKE&) zl=9;E&=PDmS^;8pVCh^~YfX3pt%NV48h0vibu%1(09Kui6a+ygnV$(|AZty>T0G{K zy^=3LN!k2Z$LD>Y$SeXH>OS6X+rDU*e(j}E!T0ftWr;U}v}X4!wpZ4Tt;(dqZd4@ow433R8!j0{Bjp=zTdB1 zs(Wyu+AVOlWHi-wS?zMN(A(fP1WSH^{;yT!_mfoF$Lo4Qnl}pD+v?(m7VXiP2I}c< zz_2u$YTzPsQQ7G1U)k$T(H_2s1H84~>j~LJ3yv$xJ8Qx#_sM&;436|us9OmNqnrF= z%JC<(4-nClB>L?02h%(*+Wn&$Ot>&A`Qwy$-{xvI594)w^O+$flEY~)#+k2yG(g%b z?pl<_e;$LZy=4>phg9Q~XR?ug3XkGV`CaOde;P=MEq=f9_n4vCm7*KvHRvmHw4T_v z4xWQo?q7FQ)g8u21s#3atJ(&SSl;3?(Yoak(THREy?=BtOV0J}AAtmZ`d>SmIs&bM zzv|G$eSEqGiizty@$AQ${q9o{I~n@1@tBd-)~%X`+f)a7w$eW!#WhL#k9?w1GOu-= zDn!|Z-mg?KkWDT)Rl-AGAB`5gv`j6;WHm%;b^vB1c{-GPiv-aN6BsNI!)r5S&N~kZ z9vyB~unSClcoL}p6gKDVqtF)DMsGv2x0s8k#nco9`^R$9<|~p{5D+Q-afino(K3mV?h>7_tu}0P3=rj z`fqws=oSwdcIsn`d@FzE)RmEgyZG8u+35+YRgb8?1>xm~$v&C(pcu|cU+LI$B3f5- zYj9A)X48caXA0}X1Oe#N1aw^M*+_r_q2A^A9aA%MtLoSiNvD#U@}a$;own(fwit1u z1!$68UwKEb(>6o}$jiHL5Q*Du3kzdhF~IlF#&>KW-dU;>9t8~lE5Y>*v z2o+R2&L0-!$o4WzxrE6|tR;#$6mzaIQoU93O?s*EqN8Yo(mRhIy{t}5?ay0y9I3PB z6Z3JtUM_zFECUpyeSo0KP!0QaX<9^HX+0DbBjoAjzd2rB9Q+Awmeqw36uu>^7#env zU8k=yG&!Q?c++NnUb{p3pJY-=3i4be|W z3qbLdN>3T;P33%jr5Y^E9Y9nj-F00qnd*B{w|{seYI5x{{tj6sL_JIcc;)35_bWKF z0+4RxZeDaiCct(sY-hoXCaEnO6*4?wn04#9MYWacJ0X*==4+u{x3TfIOs@-I`O2@4 z=_@c4v&xQ5vl4Po=ViIhr?NFkLMnfjSN!c^D2Pi zqhmAUqzHh^;KCrM_!5O)Kjm&W_2aU^9fLKhY9F?3D(Uj8qKr6gIGT{zrl|JB6dsjZ zr$BCI#iy3gQci8ySGLxLXYX}!V;Y)p-#VG!WN+swO-=)59RgzdQiXI z=E+svU*)k-3-a2d;T^o)cs4Vwtsq*&d^?P5uoB5~O zIYzvU-&K8m?g5Qe3Pml}t(5Ey>nWr|~d_;gX>uZ~DcfWlEV$Rj{6@5X7aeWZpL$eOxuwHrCn%daJhS_s!Bt`INNV0+mX z2~w=@T$`Y={o|xHzQYA$rw>;5_-a>&*4s?Dv}gqWmc6|2asD=35z9%vP)jvdpaFB; zG??!N@ZR|~<~ZJlAq_Xfv!ZOSF;^urM@d(`n#1D=p?13t6MnV>ee@37F~<1BF1`6&iAE7xLF@tJW#Grv$O{3VeGTV z4$<;i#nsm2>($Kgo={gwOnnV?^>I}lx?*xQi>2WEfq#i7%3N$kugZ*lOQ6??1^3J? z1V~Qkg9&_b)W=dq-C)uFdm^i?M2xRqH8Ay7Cua6*Tdtsq~5{A|>uxbj%Ger>*_e;K`I^A)*4L)~No4MRuZV;C0R- zJGhMgbH)|!u3Gg1f-N^(4Ito>FEcKFd}S3=;{R}x`X%VS--O|yDnSbQjp^~q=0pb? ze-$~yM*&Cn6LFA2Qb^Ab;dA-tm!K%~o6LQnQsJtnPtUPIcB zqbCLB14Dzq2BlEKu6r3L7ml-{+_4h9B)(d; zdBf=4Vvjj6ns~>N&4Md)Yqe9G|MkFmK;N&tygjnf|Lb>J>dbSUk_&Q801&hw6ee|m z?L{JM37Jpjd5Y&Cu^+xrP3MLS(dOy$+esBXIMG?; z5r^#6jN_h<7FMFM=U{L4mH5t{!;6<=mWC_kq*x2WWiQwfvO1n@7425lUe~oxu=RR0 z6o6AjE*g_X4jVGGqB=Ld>y^jz3k~uc2xHLIDN`{IEb*tEzva34oh=@S`M>x=6ti)- zRf*TB3hn`vxoSU^x&L1LmJ}^dhWri(6+^<9<<*f$Cnn)_PB@KlLo98UVkXU!wt>(01YvTKELAr;BSSp#(;{~Q!k zDykf0X*?;vh_-Pql>(A~hvq5ybFFi7%04l%ab{A-!{bv!$LwnGxXuMPhQdk9Va5h- zO|OBk;0qHySlE@?@*PuNfJ#f~;zGsFFVbpdOk4D@FXA#w)Afb^<@#6qrpZRAGA*wl z+n%Fp#N=?bwS>sEqKK}`RTZM^vma@0s*8eahYWyRg_&$Jvl!^<{GRr_mssy2STGg3 z2$6=r+TydSdcEM3OvD6p=xy$Si_mW2@`)xt1_x6}K0b(x9V~wCWXO15 zqdf;l0fQuYN_@+n{$C}S1EqR`6`_w)rXZfg84rp*eyBALZYVE3t}6GC0rJ@F3ZVFb zHRFi~nQ~Xy7m6~g&$AvH4OI4TGd6qF5R1-4>=4OCGZ)9lkd9b-Otq{Grmz>ZGZ{MI zla8`7VwY>H<;2Q|-08T==kT3l^bKGF^R9H=mz-87CsSRfKhncc3ylRN3)=G@H^;6~ zQS%HfoFpMxM%RW{uZ{3+yt%yaHwCB#%jbt5HAM45h|r2QWKjFKAk>tY{1 z>#AOLwmY3Frw)_4Z?bwM^n}fbr|;tO^(VoM;4ZEJi7a7T7Tsoo@&|T*Bp&dWkuTEM zn6XovJ$OPadHA_FkkRXN?+45-cNi2u#%A$3KIU7WGu{@@*yM+vq6~QBR${~>ts6Gi zrX}nQb2bEy7>4MJkt}WU!i~r{1hBJ45iW8cI@8f-Qt#h>;5SN3qJl-!4WPRL0TseV z1MHJ;gZ^QJTHv-eZt);`u#1U?{vd5W39E)OW#-iM5cKawY9csEJ3v#S_pch-ogCkP zBtQzHe1vJ>vbf8fJ!XpXIEUwzc33M{L-4zz(s~l?i!a4jrcScE@DJy^bl$*jFDqgjpU2Du%A`kb1!^|3-9~e`8W%|?a!le9`X+gZaiN5 z#Y)hOQTkI%yUuu`+~1Gi!Qr{T1fo9)*_}#O0ytKhu9gxCfHoV`pVq1rbks{_8mt_x z3{ZdumD0YtyJ7>Kue6WO6%8qv`^i|>48fO(*>TV(KuX-(wDCD-Z}WrhmvgV8Nk@8y zIQcgtxlzFtuhoP&8O!w8>}-u|e`Hq2=9R@Xi&nZ~EgmI|g2xMreD&1Ts!GwYSN>S{ zLyj*OuBj%x5o+g{y3*MoK%%FV9cn~zkI+4pNX(uUpcDL4AZ}r?3HuLNmIDa}rmI@S zOfPNC;E74 zB==T3v?++Wb1a|$8YB~He-TzP0B32+LjbY3)6 z#?rA}j8Ent4gv&`LxgeYUBsR*G^k+QOI;3EPG1=;u7?WL1h79wcag1{`QUa|n@V7U z9YuVC#7L5g@v_|Co-A?9zE2@gB`yC{?zjEue;6bPfH?D74SF?7gZ7M&Ct_x3zT~T* z>?eK!-NVtoKk9f`9IwBtJUU#=8?UiI=L{(3cjC+2pJr|SpWk!s$=F$OV=*_YBk zXZlg~u7{Cm=|vduc*L}GK+w>0_4hOAVq*oQGOT3<8XezFhj^#lh{sk5SqVM;M-T`; z92iD$-F)ht1}sO5fYcAwaxzPKGRU^lITX8j%&?WgN-YJMZv-LehK3hhD-XbvcUO&( zt0|S}ktr=x^NIJ-I{bEf(TAKH&1gova`&@~?PEkNpSZ<$HC`;+s*+lNO7Ug>IKrf^|5MA4 zOPfyzp5m7G;!XXxg>bJ!KVN*%Ce#>TJ?ycY9+9GtnBbF&e;XidZ${l*4ew30Jd6TL z>n&T#O*A}5ZW<={OLqlWIha4~4!b=|m_U?&j#yf|pzsH%J?!)0z0b|756plJsNl_# zEcd`gQcD#)%kOEHPG46qg^1q}@}F$TEe3L(aho)YeeX5LZ8DN(l9m)b&yIg(Wk9(k zNdfR{Wv;w0d{`=ygcig(%dT{jH)}9qb@8h4XRF3_)DT@fHTN32d>)>3+_o-Fp_yko zoq4>Gc)BrkQLl30`vuCP?{km+VIKB7rV26enymKIi;k#;OKK1kkI3Bo70yg?z5y)o4za|zpSkpBYR02dCv$3Yy7hJeS-;l?!9b2u|GPbh z3~W>ussAUhydR4cA=3rQmaO@kLqJd#EAuWnw{~A&cj96~J`vT%uO(0NlOQ%>C!O>J>+OgV2@N3OL0#HHf ztJJ_FMNz-Bc3tC-N9tyA@Hf8@zvo$p!FyRUSGa4BKA)X_e(|-jR`L7fjT6J@`Dzar zH|9}!_8j?c4gGcFQF8(I7S_-uA>*{j=HMEYrjz-z{NX$=U}oha>SF6QOr2Qd1FBZ- zdVlgX_9gG|Vi-}a$DGUkz~addoyar0a5IBsPop_G!!Cvm?wK!K zllpH-ykTRq>vFePLAAtVUf^FFe@noQgJN`zRCs1u6^P4$H{0@X0oY`9UToV?yc7t; zw~TBDywSMw!GS)M_uxs$k0%C``J5*$>R$gJX>Z{dWw*Bd4@37*f`~A5NlBLsFi6J$ z1EQb^N_R+zF!T(FG}4^|5)x7h5(-EPh#=iy(IxS_K<|6+{XTm?`+YyZzkqcO*R|HU z&ht3FN9lDB@+czBn@h|c%}&=0*2=J!5l*GCTCuYHP~RB2AkW#(Gh*N4+pt@)yreeZqp)unnkX!C zB+-6BJQOOel@l2Y(BR>dr%i@#eI%=Fl8I+edzK1GC?k|l;Je3W>&v3Iv--uCgI^!h zfHJzG_YrVG^@e68z$Mz$|h1Nw{bO6)TEv*jPDcD)}|Gv zu0I;@Hgk8j-}vPr2ryHMW_%y6&r-pE&om?HsC8nOE&l9MjMuhxMqz348kye2vMxCmbehVC4dwPL`%OoM+Y`DOCay>Nn= zybFHUUH!dH0bItBt4es2tTI%(w3;vvxw|a?O7L=iDrN7kLgvrb*~ka@9)kj@^&_b7 zOIuvReC~RaAU{0*uvOi}!bkyVodI2h_SXT=*B`VFkWI$+WFR|pw9msBnBV-^EIw=< zwJv{SxUw~wHnAd?6I{X=I-}2uz7{vLf9T)im2Q1wJLNcaVCra|z9rcSUNLc0fz0`0 zCqLEQ1zy+S8(i~I`f@v&K9fIgYR?qS96n^AmjL#dKc2mVHO}w3;gaH8dbE$dh#xi$j>qEhmR()!>(!gOag*4X?@r&H__4Qu zK#7sflqxeGyw&W*BO{uAc>nHKxMD<3*yr3d{Su%f|DWlC^_Q&O$o@U*5VQ>RtgTJj zs`0c5O+=c@c_Yk|U%k2!d&B)ulx4(0cuWIfUM~5Cb<-o5 zHr|tvo7L;huXl&Y=z(DD@Zxm#kB-#>z?f`@yfd;=C6fi^3~rE$l$qD z7|H|N%%(;Z*av{Y>;gcm_pFt5Ng$x*_!Eeiwh0iHa&Wv#@XNy-do#8rYE#Ah%ebE| z;a>)D`$zHU9m?|{?425cLC_+c)Orhi#K?oWP_S%w51iGoJkkFYtfT%Ce!hFSk<0Y9 zNtBOh3N~=ufabgjIt&Rb8@SJj9H7rVy7ps1E|#p6dhz}X-534q&UMW-2yjb*63>dP z?XS^OLjPI9dflwUUTeXH@d&R9apJ+XVC%~)_mHUi3gu(l0{7wQoTKqYITq%?04`OW z#FYVQ_7_m`{&%FGG(vgVbz-zpz?G*#f4EwFMdRdr-*oo!-cFn8&2l^pCLeJ^<#<`V z*4-_8{@Ms+@%jPo4vBBXgZ3*UC+>n>nm896v^NHTnibZQ122y!GPacv5+eF-0C5o- ze%NeKkN5v>0cjiAQ^@@IzMRVX`zpR9=SL+$Js52%h{X5A7#iGX?JBS}LY>yHcVe2| zFzulTL|p?7Ow26WGk0(F-7VQy$TdZWMm554d!QH7Upw9>1pn4xjWa84KpDg{xV@4t z|MmLnKxO}3;znK^?okIv1`9u6>c7w5vc*4h+&6RljTmhT_TL7w^o#>`jRV}m$6o*N z)b-zrw@!<16<>d{u8>A@fD-(iER_E}woCtOQRxQ?tYUUqDJr0U$rI%8CjSk4E{0n7 z#Ul`z{5@gK=j`QbM((fIg5;=wzuRe&$}*xJfGSO9go|M(xptuUT1l%@3cAa5J2Cnj)*r4yj{ zZF*);7)Hv^G=DU#c(rEy>QSgoX6x32MJSW+B|i9By1UFLt22+Jkx-1pF4y{L*9j5d zY}%W(v}xey^7l|UPtP)Q?W9Y!fARJHEid+s8}f(yPY?>mPM_hi>Sis)SxRMe4%GU` z(ko%cBlHi_-~Y&m!OzPHUJnbY-!2b#1Cagp1a)Y-8YZGvLN|$m&nmpa?|T%rLKh>5 z$-FSXT+#I&Mka(0b9J_mp-07xOr)c(9f37O>pXbixD)=FuY*F-qf!kYsOQZj&7U>m z!(Z}H1b%hDYQn_U%Jm)u1x9R}(xRWj#W^T*og)#-`nlpbzvs}{yCqPQF-!i1^P7qB zo2^8ba2d?*)U#xw`R8H|shx!ZEVqDYGw!yq6;z1w?4hsB_W|jm5BY-Ktj!c-#R0cx zOCE#ukwQZE`OX9XE(VkNIcK}He}<&B#KobOyrmAv#Us%V*KVH{If@+!Bsy9TO!=^p zaO)2cS&$5Q_58ye(cMeds+by%P6fNo`lhp;&&OA3LSIDKB0sQBJY};|>4S#4RSS?b ze8CTwLi7YG&)WUN+K%pK150mM09m$*PWsO8OkR%E+;o$RY0SQ#`qhQV)>&vHuoUPt zKIZ)NdBlFe^DH94z2MDu#?J>pbF{O}7#jiPL3>gUS$B$5nbCObXHt^xO>w~jur^l& z50n;77U3wu72aOU%O)(>C^#d_^nl9;o+7>Dqe`Pnbv4dk_A5`%gI^DZ^MjmB{$yJ{ zl1lSyqqvjkIl=dL_-+dMKGA1C_Ki_AQ8TU9xxGrbi1=R&f#+UCsaO#m(0%j`5-wwo zWobZ^eXex2OiN+^SE(~iW`GK@FWTZ5b;F8v6)3sQ9860-#k1?T+d*%_X#w6gw>yy< zXX^eqRSEQejH2jbg!8&l!lKqlkqaKMr7^Ox5( z&EENn_{3{31(%iT-S*j$aZtNd*}V-Rkc)LSY?=}918-?9>RlIt_gY0}vVLCl-pYBY zWRJueY^uDU3lO23^cdDAeLNJoF}9pkU4Ser{WypUjLXMzFV$jh6M`lzfW;4k&E@2g)tAWey;;VvUVXktP+q=wtzI#*fQmRS0SW>e^UifS-OYpcvN;FLOsKZVKURw{=w7-e`T`8=ITD3$f4o7VUfV zpqQG??hB9`gB8{68GC}JvYtZR7bpDQZ1?@f%bRA=#_Ljv#Pw+dyi#H}_fLY-z>t=& zAw*#}9br28lTM6y?KPfB4}c^92@m;*>~)i;yy{`7HM;=@rI%gM6U>Ox4o};zSdr`S zId|}dso8JtAj5XTbG~dvsj0n0jR{>gUD`a~wuaE}pvLxZD)6(pts`E!xrRwC)=WJ% z;SC<+J5n;Jn$m{U(7NnLF?fYfA1pj&%MH$dN;dYYVLajh4Py+mpC!jd@Ic74=+n-@{F@RX$x$YuXn}u2vT%O-V04ZOnfoP>M+6@cLK=2+ zC^LYVN{2A!cD-*p==@IuVb-Gx`dgb&6ZmYUe~RN-APDsevmM$+n7WF)!Y;_PC6#&} zb8;8+NHk0=0HEdu_x1@keM2GydBRdRine8wRrbYo(p7 z9>h<%zvZnw>}bwf@aF2ezF6>~DfsQ}m#L%jZ#4e79evP)t3q~!w3EEUE1`_UQ>IhN zRsMMyJw?mvpPm5PC%Lwe@?xL5ifRsWOAx^=6Kj#7^S4LFX7V)2Zn%sAHo55$Xd@bw zY)ekqPt_kh%4{Fz6SUL;@yHw@L&C}6^%mlIH@+6`N$aix1u4~C`%;`TI;tnY-RG9> z1ggIRybBLWUmfaQbbE6uJ!WJPFmGa9fBN(k2lUr%++BV+`-KD`Uu&d{>$x#o!tX3; zYgQD-$Ujd8gkRCirMhx7?Wsy6@Badv?MZO#);O{53q8rh|vww8ymGN7n}BJkJ z#I`QS!%x(??W^{m6%{)8I-~f-BV7!b!hlRlZ~WOqjSp-9JlqQXRtW9`!RfFrzfrbz zGMXf)G0k=c4@x62p_t#fpp1(XZEwXWHhi{YCGQ!>Qe*mXWr`1Uk5^cqR&T>|f#PEz!g$?u z=$7ykz*_SB?Iz_F3fGghY>ElCFMmV;FD3q#Y`wINQpO76aHl^zHEf`Bo6T~6<90I) z_3E0n$TMpz>00#vi`|yAYn7%$W(TJdz6XG7LH#+NT?Nf?5O2v}1> zkE``cYd=hs0}&V5MnP?!)aeznnN--*=Iq-4eszj8lTEf(PobmkWZQculo5c;ux}5Gl`+9q*XMjXD-_GpKAyw+Vfr%9UQRk9O`dJUOH24|2E-1Y#rzSL` z`Kh)Zcv3zC-kHLp7mLPP6G=#CrtAEr%aSz(=O zmU=edxAlr z)45wG%-!q9Awv%M5>-G|BKB}JRabK+H^LjXraU4TU5oOj{@A8I2fDwsw z*A;{_j#@tv06W`YirU5!Pe0V*KE-T58h+g>uX zBYd1ylA8=}_~P!&*!tago#_Eb-!DT8Vz4PJhB34$WVV~XHuH`DrMFs~2$Y3}1tVUM z=X03CM5l7ZGkK4X4U@q+<6a$sUs>H*4|jUA^2?}K9`pj`KZ|L=;MYy?3GXPk#c0dy z8{+5vN*#xVvJjw}eMC$r;%UvS^U+dCEs8mBHi6o!Xif zl;_yH=-=uFZWFE-p0~3SI>av8S@bYPT@okX4pt2&S#FTNhtI1d6Y6}dw9tFv@L=1d zF3cuqTCSRe+v<8r({=n5;c)Xo%TZ}FlY&-T6ZGnrUfUQ9TJmm*7;ewbub+9dJk!wt zEryk>AT%x)-deI{E z5S?azLI@IF+NBNTT--g+xlpI1W+LHLUgmET*wnfx;u~!RoSQ9s?*EfcB=rw!}-~pK`Hr5~br$;JIBtPWFPDah`mmMS{|chKt=! zChsla=*pGML|M|!?=BLSc~*xUpe_a8pQa#E_2QPM(W9xbvLju_!)zq>96tW$FXqpL z2;uc_Okd_r^A zjktK02BdW}$4JsC@qZ8DOIXr5o1UI$qojm6r8;lYV%|T9QHfI209@*~xd4}X?-xW> z1O@ca;H_ORAKU?fB5+x4rKZvm&&wq;$R0;9s>xRwUKF>of!+&=>zc#NAnAi+Z@l1E zF@rvPWBd*C!$mWN4oYt}=QiTCMyHm$U?zY0vHpdqtmhv*>3fElpA-`6zb3woid^@g z8{Ad;6pCIwg(bv4k6iVaVcd#Tc-_xoW&Wa3g-+yNeJf3*=%}3&RXeRHi;Wa2Fe#ys z`@4Hr;4h8--Up8Hn#*ou$!1^`k!+c0H1|yWKKtzP*KL~v-fWuZBf{V3i9K4LJkkb# z>!GH4J2xhp5!XC*?NEilgKBt*$>5~lkef?>Hr-y2?IYN9M7kU-R-6X3{%Ox+G6bM9 znQ~|SIC~Z@L2OKF=sKEVK{*k5;GL$33Z{j@DCl+QdZ!|RyG+X=?vVC@4Y(m!D$|_3 zYk%&55kB|KP|LC%N>%vI`@o1vLc=J^@Wel;{Sfr|%A}Sv1-wQkP&?VJOWM7k1$>at zH3mA?d&ZvHbxXLRRiX3ip8agMTkTqtXmp_43B?%bz^3r>JYkM%0lycTb5<)aETJ`B zG!}v4OYV8nx)2UNrd@3NiQZ7ganmR{B343+p!{C?myHghug^rs^u8T@hp*qcHutOC zf`rF}Gfw~En|Tq4xiE93Bs5B)1Q%HbhL=*Yeuh6Dizsx_d=zRA8m){bx&@}F3bkQu z;cZn=F>W}CR1p8*a<;Fx{DD>nc_o&-p^~aIE~2F1@SfVPk9?+DXSkpKiY|`rgR?y> zUIcGJYN(RcE@MAEpF?}aK5iqAwnD7onIc|^2(&MxhDTjlyy|qsbVA8dtWi6|L%PXRUOMlU zaX}%YI-BT7;?h=Xbp6(A4)3jQ?v$URJ?_hvk|Hb`f!w+NAM->Ax_2Qk&Aak6?h{P1 z)?x2aY}{_DfaKd=#WYRyQfs`<)mvampF7hBg_5t=fbp&$0g&|LrQ>pa`3^~q<;=+{dE&fS*2DC*=zvfAi_85~S>N@NBB=+@Qbku5Sr5N$0ap3ecuLM;G_*uxXSP1H zU81O)GyFbZ&<>z>Zjiq0JyG3R{gJEqqyNl`8%>S%GE-*N>$Z83>@LhTRd{ze+g8*D zJIJl&+7=IT`ksi(i?oQ(Fb}vRb%I}QRKjE&yj-Vu|4E^XF9xKb(FomtZNJRpZH(oZ zO#u=pL^0zMrh1&a&&2jC*9)*FCvR31tUyE2HW))r8AR_LsKsEwuf+9BCSN2htP~d+ zP`MwjAfZn3Bq)WGo#Er0j1{4waOZb**G&0olAcN_zLDEN^MU-!wor3#cY1A6BSObj zB%8ilxStwLl>A_kt*vfM*WP~({AB`C;OaV-Dh3sFJQ z>8h5YQb15{PL#RP_)yPZ?DTlhxR3VYnV27U1tc8>`-I4ugjB!VYJw&Qx+sGNh_2^Z zEf}&#brT#9XX`1s7 zmk1Y%_$;x*Yuje?3tuVkKjHBYYSmqb`tc0NZIjVFqvTABWs2;7ahvVtK$b`nh$AZ% zZi6O==SZ@y<_aOf0!?M6UG>FoFwsH071(;5q?G!6M3oz|_>2Uht8B=CmnRA%9uYD-n zOFx83@CGIyk@-CA{_B)oclR5)GrilYOhknHFjs%= zJhFt|4Ly+~SPQ&>wS2FpXO?Y^aB5aKOc2*?kMZdRX_&rtQtBq1=FC+gSE zL(@ihw#L84LgutUYoVp@i6I8m!!TMNXoMLEU!J#qjVheS^;57Oa%8N)f*JUo03@AN_$n?qHHVq?}+15h>$DFF{^;~4d<%u z3x{U~+FA3@;+iLi%7uT0XO>xz z?0_^1FBmaPm4}9ktqx*^@&LmHV8oY%Ck{y}4B(7@|@yql* zYSl4xzzCEKQYwy^_ufFBm$*08C|E}m(5Qsz{C*4%rTz;=ujfhZK!~R8Jba9_Trip$ zA9_j^aO&Kw|0LX3u$31i8S_i15CzoL!g=4_$Sof8bH3Bs@e{doT?UU$EpRdrh__SX zqoi7z_J_D80TyW2>}_tUjhYx8L9MqvSJYYi>0MTERasMSJC40nd?}wp(^aA*+*<4D zibVQp+t4I9^b(*#_=fl*D8pFNhwicolUEtX9L>8(YeIaH7Pvh7Yd{iIRNy3SrA9Ya z06x4bImblyx@$t9l5Zb!zAhZ!?{10b_5Kd1I(>*0qDZnxaZbqB_d)aQ?**f)@c=y) zZiWJ&rwa9OyH8>?tw!Sd1|`cPMKUyE*OWva_nkNcrb8EmQ~n~d6dR`+%EL3BOb#MO z<|1hod=;efUc+I&KZQ=)B%s_|FI))oSvwrm5cpk|N!+`#1ZscaFI9Xls=S}#nlu1S zztT%K1htf&84y5uPOD7uFHQM0p@CU*Y(OV-_8sEJc$DiHuHXiBVT?lAqSyqo3wLx- zxkyL1c`;mRX0+MxG7mZMgO(<-ft>^jHpcn2%nb8WQ_jIJTwdR_C^4xA46q$Y!O!?KQR?u#l+1nz22jCmq^#)s50k!wB>2(PfPitgZ#! z9h41TX0~3%bKkSKae^7t>;-GwaqG|Z;)p!ha)moVtlE)mxL=UGRQRxCjjq7gO3a-9 zQgQ-;yV7&|rZFs)l8dK*O?uDFGm&$P&I*YN>3Ng;eVfvr*9(&I|# z_My$QoAOQsQg3x3^QvSx)VY*#wx4zn6AWHzz{PHBAfHfQ6oTG6$GTTy^7-bqNLIm9 zH6AD@?0Y^naSl0Uu50)_2L^G2-aq;2VC(S?BTt{;7H&+REe*#R#2G6qyo_@gW37W| zFG%7a6s_{PEr`EeuqLx3{AHj{*GbzomHBuWRR1;^2M@5fpg)QVs!~>ktZL;EXtB)=NV)JVP%R8yh^+6nE2RzQJKgtJ6AcRX!UQd>>wsPHi=E}rwq-Y z12w=~ZVbHT<~P+XxURn!)VvuE!{d#Sg#bc*wI$Zv$uE>_{nS8|8HL9w2RQT6$L>(x zTR!Z(9f#l_ezQDqgVOJ}CDiJ;J;1;&1K8^Y%drtGRT7Hb?;JpC#ndly4~Bldz5JaM zJPdh^Uou1Zyc#dZm{S7fmQ_wvND;?;u_SrlQ(nLeFb`YNWt+8S%`i<4N|cOKN*9{# zCw!(PRy$GtF!;e^AREKrJR9TdJQjOEW#6=^u^UbQxZ~}~!AiK~KgypN1(DgC7?d@g z{$qjh3odz=n8)yB=YP8JZZ8yLEDQ0@sccL#mGBUQzG9v>TAN1+1p2zykQa0~9jL}% z2OG!gzdP83ejUrczv=Z)McBsbVfY;t!kC|pD`)Tc=?EQls@~ELLaXqeEiDD+Hfp-T z>SXz3nENhIKY2bkG^hRq4~I8bZjiXGR@w;v2T$j1w{H@9(L~)5aP?W3=V8cpAOVK$ z!O;t=+xGmNg|C*_ERw|BHJmapzII@E^xwbs7U!fk>k45{M68`v&^7Yzn0!!62esNS z5e*(}I|ew8R&dFwRl0WW^woSa($I4Lpwe;8_7vCu)cMQ|`*0yIK)Il+^$}77jssz_ zm##GK$_p`1675O5j#T()$Biq%}!gdBGD%&9*7~<#34CN;BaacJ0};J z6+)SU`VwqX_2H7XPo45yZm{$X6~FHTaUT#X9iv%cN;`_z`x&;0f0u*hu^Pkp|Zme za5|OZ+yas;N`WK`>s>CYl#4Lj3+QVuT=)KIxojAJ5=C)3^ZUJ!=Ql*lZuHy?LgVy_t zh~TP7;0ZfFOyLb^IiGzkk-O{0wkFa@Am-)_q9j4Ys-+IVrldvjAK_?1Eu%R@a%Iw2 zsglDWn>PI$Kbpv*DRgD_pYl+81i3gqLk7xfR3$Mrk^i@Y!k=7gWgYIx%#2RALGpa$ z`3Sbt_=(4J8?b)qoLj#>i#tC1sQ2UhD?4H}hb)qksG-sqv3F8GVy2W|K_{5K5KIck=MS6*mdnCj1dc$SFDxoZF zs^HT0sKbGJ6S|+6p3?1vtJ8g{^aueXQdz5WJY;lbY%GCX z9q@y5{&TO#&uTusoleC2TZFqYBS;Rf{TPTu{r|lrz_q~genn|S8<%g zE>vdH4wH7r)kDd9Xt2&gZ5x#^o}kf-($(HgR>(M=&12UNhXq(&EJDVtO2BKm`CvZs zTp>5hNRcLs0aIiO>U)X*)83bNfow#oeXo7+9MP&G2OS>Ne&SlJ%E26u)5EQB*e&EY zM;Z}WPZ}4 z!g&nec4y*L=bUjUtGQg=ZzI;)G3w(z{!wEgdHDU{ zfs;7KLNmF*A2(j!C934tJpMLt`VDYk{M?ie)K!>Qy|G2rAvMG)?W+0X@}P=gF9Gx( z5bSwlzhQti7yeg+PG$qpa$K8~E}t)!NOB^faxw6j|9Ra1^S}=E1-yv%mUC(7xJ#y^ z7lKPX^vGf&l>5>OQ#tyrrD1y0N1*Y{V3U*2LsiFa6_2LAF+3Xy*g(Po22cVA&_#TO zQ?w{{%5$`C+yXR%A4q3gU=rdgk4(>ma(hNy!Q_zK@4SI^6{CL|iq;e2#K2R)@xt#7 zcxW7pu_oQ!JLDeyspV<$5x2jAfRjz2RV8DA4;I|W3vbmP!g%L?2InrM0H*hUvp`w> zKMUMS$W;S!H?ZUYomkvTS1eSNR*FA8u9l2x1)#yQflJ+7$&5K|Yi` zpmfQtFf``C-&)9STFW^l<#5lA;9Qmh(6r|jLBRuG28T5b9E$65@LuW|-2DaW@n8-8 zJnk^Zh|A(%{!(8>xs}3i82C%904(prl|$tv`+L7qe@aD@Qg(!X1W*Z0eO9ev49Lki zHYOYA53$Re+=x= zbC^!)aDI!8XS6HjVjyoKg4;a28X@2P3RzA!!gpKFPJVJPO=%!Ge?_yoT5&azOL5*Q zTUW&q3Mw8o2H@$G@9mojGTnq#JNF%s6;*q^Ne7 z8095MGE0Bczs42(Q{0~%p1&WTb(~)+8-qq)?v#YWy7BrWQ(PM5uC*+}og?mqRf@>1 zO8C#>vUI`xi9KgYg__MtVFO7wHZi){!YNl2T{VSX?@;&n@qW0hZ@(kfI7!{YXrPiG zdnH5|Z>p+x+WV9?a3G>!BfWuFcy|zvO(Ax(hdp$A-@l^=MSMOx{=lS9`IcrQ{p1Vk z+(>pzrAacF^<>Yasq%gp>2z17MC|sa)sS>Sh2IjtZIPy6bJHZfdS?&uOtKOrMWM9kW&RNEIX5|XErBGD!vdrcaAJ~qf8rdICh)bP>T(%RyP z7kGhbU)aUd6kYDxgndhuP_+dvZg*;Fsr;HU&%P)W)HzBwx}KmJsr=l%zI`Q#t-uqa zn6~kS99l?yYVlc=?`lePCc4K*CdKNDJ_rEpQhe!`-Z(4lSt{I=m3ZTJ+yk^5G;~~S zt=g&%J^N0;9-o#tiRSK{l;}Ru;FhTCVF9^3x7<$fp3~pb1&413nIjtRw6%Y?w3OEH zkp4dA|9$M4t;4m_)+$6Bj6`^l!WG^1_8goY*H~{Le&F}hmH;*(Qx^HIiplC4qW z3eiuCPa}+*!E6ebxHv!Z@RXoZKgxn4jA{=bqO!Lg=b}u0Y}%*JFk#D!XAt=mIDTJ` zS&ebc(B(_Fq_V%Bhgynk*yTNUcJmk8ahw9JDoJ}!ToP|?U#&#C_k-V@1w z=VihrtWGuQEemNjn%r%pheXcSw6ktThwuq~SP?y})oWx7b@I!r-IsM_tAR=L4;*n%FP8%fPW+oeRJ)5j*%@AKDw*N$F z5nifP^=L+ow3zobM6U*`t&?sAeUDpZKfzRxGx^1NR3AQTY0m4nM`A!vS7OD5;s+;o zUzHtJ28gnwM5gCN*_d48_R|q)$IqCH`vB4gfG^9Vlhlv^XTv`mt=K~HOOK-su@wQI zBP5X`;Up$_!@YreuIeLS(>)>rXqM*3I|Sf+&O!0rtz; zK3TcbLupiF;Fit&E>*v=fz!bW!#8OYso6C&btg=faFvH_Q`Ou6#!EFMpHCuPuenOa zW1d=a#H$)>?=FyolTn`^W=sDQbwWxJZZJ<60H1JYd~|;!uOjo3CA5vzp&db!a3BTs zuNU)WM?%fu+1`c6M{=sPGn6hocP!%)sySHZ%Tz{ZZ;gtTDO{HxU6%nq$_k( ziZ!CzHy+)4;lSwixOVQqxYBe$xN|&nI%eP=dBov=o9eQd7w@cLpea??hel$=m08{u zlW-gFqqQQRf~~$yQdFC>--dOj4?%w;xMfBV{@7U<1 zzkEoE>Hq%rM2SxaH?}HBEGu=xfB1T!MTOr@;(~_sh-6=V^e;(#Mzl1!Xa8X*{k;VC zt)bxq092k%o5tM>aX98(jr#I|2i>CI%56H8wTWZKq#{u1ReWP#qO;eSBtDFoi-Ny~7n>xE#6;)LuA`FxEXA3e#48n59-MPW%)W|ZgVOT0g>>one0 z;VdNJy5=UWj}Dv{gFM~@ucZ?=&(vsTf9B6ZDA@`UGVeqxaJ}lHNE%7gbk}ywL{`M^ znx-LSFnhOm$hu&j``+r=FTKg3_N8y2Bzo$ey z9agijUz#kx`aT#unHf8+`()jK>D#BBSf)Oht&wLZXUi3p-~5S@H7r~`9Y*}F2O4q!NAel|HW zg2Sl`(xER2Sbj23lLed8y>V(Y$F9uX88&X){Ge(RCw7ZlBz(Y`VDFOrs?BR3EK}s>EI-lA3*)_I@v=46fy(@upkZ1y?{en5~|Jgh- zxO*dxmpZx|8p#-(0QT&t(Sip8?yWovx~nj!8)v{|yq3|ks~5lOQt1oy#@ zbx1xZmIf^G-#aYHI^rerQl-~HqlHZ^sUlWVqO7 zm;Nm)57o=ZK}Z+s#llj<-5q-*OVS!fywqBxIeQqE6@aPJiUF0@SjLoELxuYYChG*$1FgbAnkl-?hsUK43Y(dl@Lby7 zPR^y5SzvV%Xp}c9SMvGT2moVUKaV-zKw#dg*2M1hdw{X-PphIg<5uHIWWa3yR!K6p z6fHf{2@#Je{D8gipm9SulK>Bzq8+Ud?T#ASg$uRQHoAa!T-iR>8<$Lw3&TNdXzC5d z2c&G?6)L?Nzqy_*HYx_Wo6j8 z<*8$A#OreV65Elj4EgoIRsPyb_RvPW5VXF%SUOjFiX+4|uAg{4Fwa65X-riJ6Qx4n zu6cECM<@UJ%iq8}tLksHqov>&%N0CWgy7Fl*ENF-#RI-%oqcIJkbStvG|8e88zTZy->IHZJfrPrVsjZ-3tD{4 zklc^h?!}iA4UBN%8v4T8hL8No^IE>lx5Un9pjx(t+4o>5E(>`$KHSoOQ&p=;W5>?^ zV%S>|_c}2z2dC`#hgkheaGzi)e6|LJAD#R6NS#U2!sGUxPuj$P57gbc-q8RwnFcGL z1iqh~t+h^kf5>irw*k7j(>dAgD2ItR{q8y0O|a|LJTQWaY{>w{bL3{sLO7kgbU^vj zWUHTK(;y{wnKK2gbLOd>ZWeM-YZ4D?(UcK0zz4YUhW@TME6p;53}o>SsTJX}SQotG zb{UQrF%eZL(T$q3QUjE6x59DwnO>0ucT7JqEEt&`|Bt~Kz_ocAH$d!0Z1bT&L{FM* zJC@VUhQdog0dBMzy!{jBKsnT_l%VM)(qI-c4Cy#@q;gTF={i!Yi@sH;|cg5$>aw7Gd51lmon7A<}rk%%%NnJ$(2&AC%y_qvtxX+FQ6ks3B}5 z2q|qT(J#<>jtm+r&8TU6s=0)+cQ?y2UA_2j(#0UQq!k4l_V4L-dX%luLyP^Qk$~u9@~@z6Y*?^-=_;AYIp|5 zC0z<8ReM}i8*YdxbHa@9e4N()O7M0P|Valc1 zfUZ+&6lE}jE+mv^F?H#Gyw;H>OMwpEL@MDWP``Lr=H?Rq^`gdJHbgE?m}+)F0=VqC+Bl_GT1Tcg z%F9%6{C*gzNX4%v{mXh9S!Ot3(Ri>O_SHyci|e>KtoqwDQh|dST|p6g58aAOK7Y4|EiN^qCx~S<-TXYeQ=|u4rMqB za8VONcx6si2hJ>hB?UGUmhstlV?+R`Ig*N#@L{Sn!$ds{DRJJ&R>rBQtj3e5tV5bP34w}wO zkgK{nz0$3Jx8mmITxS2z?oSp-1ygxdBn>Xt^@P*f>g5-d!OKppKW)qsDuPpAqm8cv zxmXAavZ$CO5<}$^5*LC8v=SlNqNS?8n}TlOq~lqTS%-)8d&3sdQH(mJ)Cyw)x&}n= z`K%N~zFr8ykyPQH$5@b}pIP6?rG6|TrAS4=0sn%rrO&*T?q1JE@Keq8hsHS$v&$fY z?RVpnu%Tj6>-=tw<&u!0-?Mre@#A!80Bfj7Kp+ybC_x;^(=B-*tweYNDTz z`k`>ziNRf-pb~4*Bo1|)4}B>jArImemuXH==Y}yRodxZp5|YWg4UO<3BsyJ<(fvay zsSQL>HQik*%Mg(+YG6)ZiFbYPmeTn|>&9v!D_kyBwE5R3^4o0S0TYodW8+US)M4sH z(&BJ|#pBzc81`U1)}A;C@;XG410eQ4OBHCBu%9cqK!vKwhd)G^?+i zcsZ4d1?k2+5onweHMbbNi2t4;oQvp>4ABv1Kor-IS|tIJYh}Qtw&;Y+?#-YHMG~U=gvH!A> zTQI9xFit&9k3;5?79`k7nDa_lFtR2Yu8xBKFLrV|;Du^AAf#|}l+hkVc2rRVm8WfE z8Md7r3-<#5rRC~#UWJ1VDVTRcz-s}Emu#hpNx*^A3o)B)PTcb@x^E;KSukZcCT@oEg~a*PV)aGa;{-jBdhO1-2)P-idi$pdOL z(k`v@Vp~Kg34ge}q@99gu@yIs68Gdbz>)M~Gn{z*{+r3~HQkGbEDmk!9{>1Vuh^B} zZ*k%2C^9YJe@;ym^YW(tJ{5vF|8{U=1T|HVjUiPbhQ>^&zERGX7PTth$ixc|PUpi* zcuc97wW>nGXgKlanAPB%ZwrjNbd5xSY$r~Gza~muL4PJnszQcRoMEk2gL zQMS=Mvxh(o6)=H3r(l&~TQQeoS7OUJx!-|CIE_?jqZvB?KDiIl4YhE97fT=8Yb-|q zCVPjwN07hC?U@~cMA?Y5;icL9ygfwg)LrgEp3S&Ng`?T}w+!a@xaStY2CLjp;fvsn zX_DVB#96cym?@6~W8L5uW2ElhhXfYFo)hWgyR|F^SSW5VgVJR5f2$@=T@=nF&jb@6 z7e}VC&2#*aKAzLPA~g7sszL15_pu)j52x2BN<)Zr`P2<@c7is5n*)wxgBSr{_*~j4 zH#MGAhZx>aU?I5QC2?GQ*mfgn4x)b!#x%n8U5dfV#01Ngwb5QZV*&!EaXJlg2yV-j zk3S^&7SvmXN{G|=d%?0^s&o&`AZN)M_b9pyFIxEXLM&eAHX zQtP5P_@DdBpH&1>+80h{x0?ZZ?Z{(T=zn<^wsUIn^RYltcIbOv1WA*G7=R;6z+^Sv zrbB>AZk%#kUQ*~ed(UgV`rMr@6`QS#kK+C% zp#-KUM=Y^8|KXPZGU-UW+CtzHstLH_E79uE^!G}jrPNnK#`W{|Z~ygNlNk{R{09ks zIx(8CJAzSxJ@;q3GkGOfUBD^@NGHhq~`T@HKn`|C6%Qr#kSj%~q9r zOuhI2qwFpGqFVd!Z#tz@KpH6-L>h?!hVGU|M3ipn6lCa-1_6f#1?dhEq`Nz$q`P6B zjh=JvbG~=He$PJu7tEe(e`2loGE;YbiS^_;?$^wYLZ`YidH<0z{GnI>Prah&t*;7K z;w^>L%I2BChhDwC!G`CJnvC~WY1%#^8ju8Hh>lZNF|Do*F)2(mSd-}R%U7Ld-YaNizg1vGjQ3}*3qlqkBQ_#dy zN-x%)1^ii(4A`ZZ!c1xf%M}ER<;%Nhk3x=rx!C_IN(8fKaojI1n;s+dZ8+h+{;C2W zhBjN`2+(5?9PuFhk{g@&vxLMJ^%3Xl)?BdQ3y0=%x%G$M%F>~WB&_b29lbY!9&M;Q z=sc@`_DgXreFj~0`nb1p*U-eTchtW<<{GN9eb-a5SBRTfKKw#~QWJz-Zl__oF#X{L zV1(T7zJNPc`sOECIbrN;xISSy5>?G�w^3Y+>6WU)j9BAzL;No+F#xP#BNHW}Xm6 zkWDw+21WL@x3pEl0)sK1hV`JgwZ2m+!hl(UZ06j znbdKpaG$$=aym*DPkAbi_drc#7C81Hn zS;5Hh?Da&2U?I+@oMsA-ua*27nAHjDHCHIPEfsuqfPxCChF&#!wv<~0h)~vyXbHND zP-gYubpzG2iyb=AIXy`y*IBTx{IULnecTI)DXj1@ALZk^VkV7f|4{9lLU#GVh*YA=Lka8@ai65G^7wstRlO?*}oXAdM$`l|SodPEB4ec@Qe;m4 zGiN)^0uaE&`O(ir1QT*;ITO=U=5F-UO(YT>KSeLbAk!rfbpc~Kaq6p<27)l}&Ug0A z&j~k5jX!?`_$jS| zQ3z^O{FcuQl(SbNWLGvJVv7txBMK+%$r%n!NUIb#;qb zyFDLK7MP^2)(~WkOqbcp|CKqB#yvCul`m$2a0+_g#E?V{zpF&?6G+SdJ)q=%9~P<- zHXExCLml=~de|S#SMV*w?@GK&4cx>!0N=?_Uyr0SVAI&9yJui3zcHUmLzq9kmicDr zY7xy(!{{eGpQKu*fKxDrRK8`N%0C8^O}l5}eI7?3Mj1K+x^)t%=$ER|i0%6PIQD8z zo#5VP)dXO2=lL>@tL?)vnhvE}kSvMm%G={l4JG)@Kp05uZforN3${JUeCfXr@46>J z#U%C5(8rKNi5geh@Tr{WXiTBAl_;SFln=4~z71M31g9Zrg2V8Rt~uu;1}`P0j+0Wp z)wQtJ%D{jNU9EJYULpSOlxGpb@Dukwk%}5>Jx~>GOp&C~?uD_yDOD?*qlUE>rPl3F zM=$>*&7U(myugz&8}Mt`NB4W!*O(I^Z0fNDY&~`fkrU6}&nzC|nbj)8TzjNE z(sEP5E?PrRzcv?E3Kp`6m>3C%wLRJPT*R2J+l6k*%Q(D+Ac!W~-x>_5FMhUo>``co`Gf#)4}%ctVE92Jf!yUdung$gG6D$0BFguC z9q#D5YqpDi%r{X?>mZRPeY|O*kfvje>rc=e@#}e+%fXYk%Zj|W%fxJn&F?WT&|TrW zCLI9~_*jO%H*FLLdLIRepS`rSyLHS&6s-Anfu|tSwY+rr8an?L7MK)v zw@4oE{MJnY@!Oc5z}olj9^(dyd1-cEYpr)F*L=?Iff+;lu-zo){OrOj7$yOSW3!`k^DlY+{HE& zq%O}(iBTHL0p>wk$3D?%S|%~5$3{(7{~$>pPo>;HqLqZqI^yGnC`6!^WNJ@op>|Bi z!vsUX(C7U;U4x2ApvpU4R3qX-W@I)mLB_t?y*}SqDL?&zkHo(5{jcf3Lcn@6l(~u< zZPd^{nXpzDbb*`!zYLBFe0w@s`HEOWK^y3374}NE@=4HH%{r?OfHjCl;rg;jFXh(! zvcb*$_>LZ+F29CLqqY|Os?0qm@zW4TYdj88CKx6V`+)i!hUGwyrU7MD%h_@jRW2ND zG&ZPhSdiQA-Bi?SWp(f3{<>-~L12rPukb09Wh?W$(pMY1A4mnu$NTvOe+F46m_{Ic8uv<>bpgckho|NE;Sl~hV@IBn- zs(o-j&hp6U=we-pp+gxPm4bE@998=Xs; zT{n1fH1=?a4c-~nHQT!?7H+5%#G6v;oQC2U5v6A9#Ke^v8n7b?XwmAR9G2NijE?Kx zWU|Gqqmcl#QO=^!>Bx;B|Dah*&T8=QW%&x`7liCE_JU3o+xe{JuEw|0;C!{xqW?wiTBme7&=G~3_1vhZfbU5!6 z%WD(5>bh(+i@l1|XtvS}bUik1k6QV#BJ6@uhwzQ;ea#or6PSQ54`R)YO77SSz8j(~ ziu)$Yw>>;t?u0SQJEnMRA=Z><`x&0rDfllgIcd;!f4v+)sKBuEbXa^A?U{~(49SDd zdOoc5PABuSj^944acjPK&7s>zBS^@pp2hb;I-!$oC4g9M8JkDTwTPwSx@B*aurx)2j3b|VP^BAr6(m)aW*1SKZC@s1GX5GBbFhbB-msLnC8t3ZNKM~vv6VCcysvEc-?JOOGa(K8S22B zA%@jUWPVAKj5{|RlAe}`ZPaDcuetAwzG`%H z@w#t>OQag=W9+~V%oyOcI4oF(=4DZC3tcW9 z6qkp@UghMpIeqg+%@DHd*w&P+z#AB%ghdw@VauOdtcSd-t=&Z8^W-JS;FF$CZO+z6 zNZw96fk=s!8Rh+)_pj}Aww?!=4B`p&+8*j_`qjK=SzO#P&H!c6a@Q@-9!-8@!vqu) zv@+=b!D`!8c&E4)C*?&m)Qbu>QF6YvNQNSPeQYOlC+gUadZG0~o6a;0i3edOtCw&V zB*HfHU2N;kC9B>U?;qnU{2;9LUi_M8mBldbjv3;Amx6Dgi(W{RKmir_6O@(*TZG{O zz4?MxQX#U|s$H84wZQNc_?{e_hNLe?tyXa5jE`j%FAtPMG#M;iNfaf^bikWKw7Dn; z0<@)waaYb#ndzx!cyTM*th$we`TvGOc@VEufdF(E5uozmF=_dce<+i)96qvSw@6js zUzIqFIhxHOB}76DMeQxuf)R-n2|^x0?E2IHX#*^dmC4~iZTo~;BJL@mWqLZ;47+rB zCZ;~AfRamhiZv|uXaK$$r1C(ub@m4~Tf!id_`Q3qXOo1N;Eout5H`Pjv|;qfPPyg^paV-28<}ER!4C5p;|l#Ac$U{8hrC^X_}s!Wzr} zb%Ssn_z5QPDz^n>f@!v08mOunOr+cXMn!$RAG_}{4}1hq^wBmyvMIsVV9*R*#g$G@N^X3D)o+<{5QU~}qU`eeEF z8mz(0->#8?G@7?VoA{%wT@$n6Id|GBkFqA7+ChyOq=6{S5&4(PrT7#&?; z#vy-oUkC1A*c8|E-Pe%Plfl5=HOb~1s+RhmtP@_5QDMs1O~2yb_rNA3U!2kCH_^5I zneZJ}UH1rfFD8LA?Q(#>X0c2-@#HEH!cjPm%4GpLNcYGIQXM@?=4)tva%U<24@{td zHYgXCk3S<^)Z-^9_1}O_GqQ+s0NAZ+#+V|a8`a1^z1V@26GT8y2=o$_hdyh^h$P}- zS#u&n1fV3@Zfu^JGE@l?LJ>SG40{qxzYUp+UrnLG0~XW4fBLZ-A3%Svgb}c)zZ@11 zNA995iwClPF@z~Q)3w*8rR8(XZlK(yvVG$QQrZ5!z%BSy;NFos)xTAQF%KHf70dY< zb`UyMvjs?tY1}|+GUdAsv#W!(IJNpVeZ2l*5Eu5i4f@Z&;o_7%-Vqncc0~$sb>bb0 z>pcm=cQQjTl|w~_q!P6CvIyA6ckvb_71q~rq2Pr*)cTdOX)lea;l7I@^=h~{@dAMH z$!AlThS|!!+--{uHTZ81s;whlkv9Q-P--=G9Lj8Ro>U|nVRg@}1x-J5d?r$v!b#gLON1Soo_?~Zy1BN+Rl%WpRT&bR{WZNS|LHk@}!$eJ{0xp#u zVs6VS$%^|@y`d@M6sy`%EGyQMxDFpHkTn)<%kMu12xisU80gS~JJ4+}Dzy&cG!@d} z+~YAI8T54z3g#F2r)aevXh;tPEZQq%bbFp%6=(I zQ65FShO~vhW*|tK#{TU%MMP`I=TZRUmNB($ivuS@=WP#9*}=DwCMbuQM@!d^F<{kp zpa$2dPW!XkS5MtbLdy!(R|mpMHGv78SDpy`>~#z?Q-AwP`yZ@>jV9<*GVAf(C+g9O$@tK`ZTBJAQ*swsvzY07FRD$>@;%L~e#HyHo_ zJy3G@KM4?ewKwpNW+C10bNEZQ<92ucM={~r5zqJlVR;O5!K}mT;%r4fDhu9lHSPau zQ6%IyNr5VejBIyl1V37}`?zCpi#fEj{tS{lKAu#gmSBgM> zdon{yAplJ0^ECm@4%>lw*r}?PaZw@=7D9?x(n(@QUvmN$#z}TrZvlgT z!a$?=NrZ0iI(k*t7qtASpVZ4N0hHP$Z(1geX(GKrHrcOfU=(NmGl@hLuE*K4FBCS= z9q^WYi^t%oCS{@A!1is&QMxZ5ibsl&5~1mN)ozThZs`70Q64{MHTBR_wKGz zduBox7&dGF>I%eWNtzi0XCw4}IwqlwCKCkAIs^c-&|Pb&{gHB$3xn@V757yJqB$@B zVSd~E2ZqXvDxrY@OvYu{&-I_3V~kM5^x_IXiqbPlc|b%j6~>3dp8?miSa^^rf0eaP zqsTqBx4qsxZ_*3qcAUFq9pj@r`~D1J_le=BA-3piQWfIK*AT(}Aldj06k_8JE_U@l zyw`ZJ9^HT%c3EqLRZ&BN{CchybC#~p|BwG_TpdOsZgvl(0>ZpxmSahLU?!X{qXXoN zQP3UP496>kV95Sd+DwBU(vDF$yIR~OpjNm(m-AFenM3133z4TLfn~;3@*raZ^&Yt7 zUmrh>2%P9&ALze+OK|d1bY0S@-K3|_!K=Uwu1qn7he$HPiw9Y##{t`ZN&ea3-NcC4 zA&a;&DnAoRe@Zov?{!=x3ebKY%S@DNEJf~>$CJbHNK|HSz$l#-eYbPasXOV1K6l6exuz7N}x6TMWR)+%=@t{LkXCKCh>0o zvgAFKY(j_#I4Y;jDuDTE$>(h*btx`X$EZ1+*9d@{_kUisCQ6{&pFMH19)QE4GY|Xx zVkjh3+fZL^7@L?@D5TNWUr_rF04`_PD~Lo%Fr@Vl50C`&J7oE#%%|PGH%Ol4Hh&B^ zmkK;y7bKK0tLS48nBgJdJ|1~;mg#03CKLz?AzDn3T{X3RN4`Ai7!D$VVc(ykJfZ_G zZVCJckA8w4xr^pH+WBj8jcwky=ib!yIAx3Vpg@=dF)+34JkzR3Aq_@2#&17Ibo%sf z#w6G3Y$#IH>+Cp@PQ)Dh!3QtbeEb`MJ+`dt*vmDc?=vNu6m@xvkJMei^*NU!=$OT_ zD#L_kjn|hF5CX5h($GJF{JCulWpQvTjD|{3)=^76KC%8D%g73B+qmCFTR-XaqHn|( z3AGmq9&sD7C`78(DFzK$kkB*7exE(uM4|}nAy}sZl#(p{$-p4y8Pa{vM|8wvOAzhS zIklnxV3IbW7~blAgtZt-@o227Y8M$95F?3N&;^X<<8+2pJXLy2+czmQ;OiWsT!b$e z!?Tv4LpDfj5GkT{UR1XA4&hRCop_Q(r%*#q+aGam}fBK!@Prs>bIJTJ}nP zr?=6~M`huOz4O;T1M!g*Z6GW&AeB;-V-frZ%)qcWZsHv5|EOBf@&5m)T8?Z;1gI3t zA<7jfrf3NWbrweW8jSr+jBL4Wv^n4hTpUFII?3V21>V2uW!U33KeLH1O4~K7b59c> zs0HNDzu3x#Dl)@7?HecC6+>~$zUT}*qp$h^8eByT>5aqx@My8Or2SNml_Hs4c3p9> zzOFY7T&g3Q6*z35ETt&I3TY=!B2jxL0V0yc8e=XU$C0r}!07E?f>_AGvr zwq}1rD;Kwc38p$UBe`!3TKEVVe<|)CW<7Jw$#cVOQYT;65nEWz+XD=<+F=YlOvuHm0s1QI-uD&Zmnn}|p zB47}+(fjFK$@_Mz=V|>Sj|3n+27abLmP?8NX3bBazn?}9`|{2LXNxBXs`$!=q2TKE zD~@lgvA!_4n6`MhL2o(M&ku7K*Jau^z8TmeAtuGLaZo7k=tJgMr2k%4*fu!HU&{%g z1F_rk^B+2K>C&^ks_2o!DyvCd)Fa6|NRhQ;Ai2zZ{=4x34XHLyey{3>V-e`o- z;Y`q4_cBzBO4~vvdE@On9VW7Y%Az$*GR;*fBkbNz0phq{3rMr-1bH2-X45X%WJ>lS!XeLCXB(H61@!P-v0J1$&BNx zNT1B5FSU20q5tEg`44lU&(lUa)FN2mUe~cvk--1`jF?1uYDldJg)pYDs>J4D1h%CC zcz|>~wftF+TWovhwe!)CZLEq$0n;i6+L=z455+EM==jr6MYC;KgX2i#Oe} zMPnx`%;U|x6!3BDk-49RfDp|f2NBo2tCcgbY#ixX1x^*QXw|l{@`sE1Fg=#}bF%|< zxu~T=29c8^2;=OIFG}oKw%lURn$*`JBUI6p^p^~q4K{5)!K8H+Mg`QYd2Nqn2Xc*= zNbcd=2%@4R1t+>#EB@6JJ{Obw#i*xGQ)|)O#Q|{f68ExWV=x z?N8>%53sy4Pbg5;(#BFDlc*B^l3K=es3INae~tR!=BgaVQt%E({a%WaKOXfzup@#Q z7S6Sg`{rs{Vv4iD<*Dciihzj?X#Em2pJ?0(A!@TK0Q za;X>!QY7OwwGY6Bz{DQB2>(Oyd3n(^>r1Cq4N*RpBW%)IeRPlcNnK(-oy{8Y#^)Y= z>9tU(c$C&d+LOQ@5sZmplVdKaW((~=3<1MXAkD`<#ooM1yiHDsxi^8Lae}^;RW~By znaB@1AUt`0!2Jonx#Sn{iW1h2$`91L1*W*VZM0JBTonz=(o0(v=HFc>f2y{kEOMz* z0M!=opdEfi|#ADK&D@*u=THhG2FUkE1eHhzw! z;UMr1)9N=9?=}=%AYO4^t9_e_HFyt(!nV`+;*@Wlhn^|E%2?Fr^sTZ&A%u?8^}T4C zLiY|)O)oS}8aHr(75Ytsy$q#IAR{*11&<{+;S4}F@TQ%QI%K63-Q zi(8w~C4Fo^x?W2GQZ0RSq6-m>Z^T-0R}ZOu6z321GT;6L4cqOMWJ(zE+=pGu0zs$Y zZG1EHxpbR|TEt`PPhmL?n_4BysFw-V4XdB+ythVF#BKoa;?5Kr73znMESb}SG9lzE zQ(0wlv)n*gY_*mt_b6RY4W4m#UZ6@@yvcou)NXVUPAKmrNWyiZNf!rYYuk?QRGy?n z!Q%=n%}j03u97ZMXKlQN|-L+c82e z4{9U@gw|mH49ayExeT%bg0RH9NlBfRKhFz8CN2K=p6GXy`X(TUb2aCpmwVuxq7l=m z%+3Bu!0I^x$?_^&e;gpOA7{F(-B1hM5={G^s;og$)9C2(SM^I4!aYP1!~swXy z))Nqp*6XC@_#OfRyP9u+jLm80PR4e#r-Hzw{vB3MHGh(%G_17F<`<+nOEL~3U34l+ zfDVb!S7RYY-&}M4hiT4TN{q?oR5+8IdW)lz`901f*8&70KS2de2-fNx@X(PhM zpwV@~(tm?J?>||ffnVp(oUz0)P3Fl?=O|q9KF1Uzh!$zl0J_=34jSJyZTJwqg3@STufI49bz}N!8Tv7WwLqN@;oUO<=^RZGd2~d8!>C zg8zfycrUJx`}**;JDsCAy~LLjtt*uNt}42gUz>Qh&m= zAn9sg9*ODREq6{1nx?+1hrUSqA;4m4UIc=2!{LupX%P<-R~B=P{mSm?Te?tEh# zK6|^#jOAXN+6zZOFjFzvA%rR}$DV<$UFTUFNA+Sn?NbO)XI;hYvl@eoWfik>tR%Lp z;qoIJ<}3ezO1DLlZ>|UU*l*EGtqo9ugz7MvPaPw_r~LF%uU6V*i`}%K9}Iy89G7-b z|H$k2QStG1+vKow@3S)c=KSuHgQt#~#N^wwG4E$eV^I|p-&u<2`?LK(gGvhM8@V2z z0yHIC?;}NZB;z+L*y`t?@dB2)fLFOrI^XrI@w(Q>64Yn?_?D{=FJ#`TieL`;l37lB zkIknR;M602$=!aS_b;V~op!#Hs2}Nk_B9K|I=bk-{{SyQKEhKQi(2|dbNiTDT_@&_ z%V-+K3TQsu^oY+E-fK>`pUjyR`mSiBx8j+KA#+d0FPwS_|AciqLDVX)Wf@9MKJ<~y)(?&*8E z=doIqswAbL%MD2)$j zeOXSsU&X1W^b|k~n1k|@kTmGA2#^c7+SGrKKO9nZmHVkENi;sE``1=K67eLFbBeu0 zOk;~?M{?KYr>nw|c;g=2ePOGo&U1pTu)XC7aas!pY@@YfOuTo#(J{@CyZgRn;A4~e z*D%f|4EP7Mzzmh0prf_E@A!Za$T>6rE(IRo5qwdpiInohC`Et4&b*VRU-Aa-OIP`d z#H$_SOkDH$*4q?3@L5djjUFG&N@12XF(W$l{gLR6YXlJG=$pc1(65zbO(D^S{Bw2u z2>sQo!=zQYv*(}jRH!#lmZr;SYO{!~hDv9^BJ|lZT0tybs~7nL<%iSEReZGKeb1m@ z3h7m*i%N`^fx6=I$AXN=S)}XDqKwZ^Z}=AcA}a$vM{~0dUy^~h@7-*OUE%GET}8p? z>cy_B)4e;MCYBuVG~YJwy3Curp(oZ=R#iu|&n$kem6|5d2aZHH1=O;km=_-k~qMcSRWz3u>_iY}Y4kRi5k>lgFKxp@9i54ShgTsdS0l2z91 z?Q-R=aFNMsA0mo|2gmLWa_gLy-pNZy+6izQ`p|cM;Z@K&Jkma>ovRE z+-gQIGp&Sr8d{hTy(~7ief)^wiT?Z@kawzpQ4RI@yA||b68OiDKZ|0T_QW5)JUF7& z3o0jYwlT2%gkz-#m_24cTFBx&@NK~m$is494q+ajarl7_pI-1;2!pFM%9RwK-K;gk z{WC7M2AXaj^h}!se7j*KX?;c-RR67(ofh319Q9br^_!#qpSFaCtiRh5b_tn#NfrDX zDZ)jIbZzPXP1E7jYF#ko$?;3h0Uaw>?`1J#FSI{UJ6G)f5y-an+o$?47^@8;zC(-D#m8=PT!i_^b%;|FwhJWvRSp_rt-QyAejN9WpcOam}qmZI| z+AG&4|LUb*^}S#>+VAAFTNm(jefSRRnh-J7Rsq5rixB8;uEtBAmdIkFXpgbO8`0H{ zVc&f`pZE+p@n#j@iwHZfZylniP8sm)^@Zy-et0YAbt_QZ?!v$l+g;fE=r>JMd)gp% zmB$-62Ik6{ntN_6L`-pOj%=oza&&ATBsw>FpcvlfTLoG%3?71J)jDnHHK+o8(6L&v zNRUw`osglsIvr3D>U(pCy57`^4cJ|Fq&ge6*6L0nViKg^qw1`2

A+bIW>s?NYXHc8~S}|L0OB_^P4&yB^Wr?9HxKa!Pgd+bB7IxYIL>f-_VKozIFO%JEc&*u`GVhfcim_A6%bob z?Ry;&CrfZqe7og)QzCXXH6WDCWRUZUl=yS3o~h79Sy@I??>>0j$KsGan|e3W;c&qDK)s4ckXnePqu(FB|Zen7KM76vaqP(Wr| zO!PS*Q+jo;`%>XqH*!K9!9hwVQ)}$A;Zqj0V8_W_1xY<4d3>oS8U(n>XO#30(aSyd z3uGY^oT0)nF094#y-jw$F43D;Q|gvYj|+nsQ03s=#uw}*o^xB5S9-?tmsNb456?W6 zQgk+fOSUtWc-006<0k+qL-@KM6XnHd=(iL?p6kIE}OiK^pEGqU0rN))ov<+d}L9KVsZasnznJ-?)5BoZGB|JqHXW zHzd~Hge}3@sw;eW|aoMxC8tg=6ou#^rZp5OV@8w zk$ke&4gLFP_5s!(g;;_pP;`pHkHqlkyw{Rn*qB?-4{dS0(+P3S-g@_ z-wRIo%d6(IyNvn^>pD#f*D;(PT{0xgy5Pyp1_4IB!lI}#%su!k_})Rvd6xUlg|87@ ztqIeoL`-;MBIBYGepBn}4YzbVo!W!n?w!S_a4NPph@Z=3owuk{s^KExQbUp*ay4RP z1Ob{WNeRIKVtW>k)E#M@yYV5yZkXJ&6fVwswuK!W9t8Jg-egv1V+EAWr3YK442E@? z9N2Oi^oI{hO0pNGd=wPRe2Lj*4_yn~++KJcgc&oUM&BlX0$&bA`HUtb?UwZ1^T$qq zwouq$G&F^lKK5lH&#~%TyV#LwW78#*qD>J;Ehcgl98Ej|Ic3^4B?EsVy5P_*^Wvr+=vlX# zcZP?S7HGP>4+vtAw{`S6J4@ZrAv|{VXjDN6EVRQ^H!g6rIf>0 zdO3`4&SZJQuceJ>9UkuPsU#=_&!a*k&#_*wm=H96Nz1t~c;akv2qVGlG zO{<@mI|y*7`@E#u(^g&hGWX;oHAInkAJ`(LLgMV6dM7Gz$+9K?gtW!M{H{((A!MPn zKf}?d9rGSgF#Ohr_Y`BR|rawf?I58s)OdWH=SDUvNa!$|A52gBho)g}S zZcrDmdo&fvU83pM^fOo5#Yf<#Tc@d2rC>nhERCt?R*`fVTypmCt`+aRY*OhNY{qv| zd#+#YD~}5LZX%$s_Q}O#B~TfEm*XNq)Bhc@tUe_@!foD6^Rh?e3?KqDHx-DW}R2-1^6w5;K_|PcZ4=5f%i=ehgO_h#PDj| ztng2R5BdFql6Ppm80i>NgtPe2;!dlB5uoaLC3D*`-T9R2DoR`kq)Yi zc8xaiR?y$pvx1uPmVjgg&Ta#sy;D9@V?ZrtT-=PFWi}rejqN}uyZnp0;C~#E)-TZ&@U7K!I#!lpsG2s zBpztIL5HUr18Ftzn}dgaC&=(sKz#_LIc+_6*p{M)S=054fj_Y0>1Hh%p#QvKCdlL}F zUiuy%kEro_4X&3vdrA%ddn%}2R@-UI~e`1kyzU6oc&x<6ibmt2RIjIM5_ z(h6n6Xh`~+UOszmz@)80z*(a}OJt}ipi$#XA|FZ1)cWDEKFd>iu{$L)P`YYhKJa{c zbN{%!hh+ZpCEaHvTQ*EhT;x2FUxlmZ=S%n6y)91~prp}(?-aP+7Qi=O_@2_h>wmlq zJWPk6B;`R0Wy29$*-EF7QYLCwWmgS) zCm0lq3@Dqf$%tBz1%^Ig>}eLi?=&M(ueSWVO*Ntp)ec7owy=LomB_3Eku`>H2?pY; zdBg;SVTnPlzhNE|Ea5IXA}8r-s8fE)l`;FWrEWO1!GQc%Q zzI6^hheUxh6?#|#iNy-Y*e>flU2hLCx-y+ zmugKJ!iZa__ZxnE*mGORxcb_BS`9zWyZxDQ;R&C?^IgukUi7`{x>Pw|xVa#105YMT zKT!~vU7dZ-@wf`m8V==a82+g>oLh6@v}v%9(orBTwt2R7n!z4lsAzjU8AZIi+2Xxs zL<>-He*blM>dYWt$5I>INtqxL=sY%=*6?ll^JFf!D9xD$^UE|vB*#vCgsy_!H*tgs z4N-|nnlL8 zMpy8kV_Dm&Gxv&xc%e8#s<#2hl9iEhJ|)}(E6ZsW;JdVvdO!M9Wo3iPC?boWv$p$w zH9cg{d(Trar5Sz(7ZtKIA~udRu*cjQi|t#d!5#Y9Zt(sLkN44%MCIl@g1o61{n+Za zIGMt*q%GKHMXbjk8G(@69^(v+@A8@~wYD=o1NP`bzJ!QpM#RiyxhAWqWtH@S2PNJ+ zR=4lB;5nn~Kq>oR&tuncVPPU8&=_u)3#2P)MD4)6#Rj*CSB}hzqojiJWF?5>tdEUo z!4mPWNpza=*<@n1dW*u$W#PUJjVjEb5v~pT) zQ&U2mx%NYSK^sBkBbF9TgAs|z+N+70fI- zhC2}M5wwzeU8EE)D1{+n#*BqX6x(8LEIZPL8j&l}9ojsLpj)cV`Xdj42T23geEvdX z<)EiIou1@24y$zTd&-!F{y2}+?_>lWFCOi1n}YWr2Q)S@eF7@6_Fyx;EM#<)GV!>1-1bXgwobvQina(nmtiQlJ&rt^IKO;M6b3sA zMLKw6s!-b$lz8#P#Oy6ii6ze?$hTZetHz4vOdgY&ej2;h%dmWdNal6-~9QA1lkID4tFy zK%a!>LgJc>f&OydPVrP<-?m>%jMh3bPgzMHSt-^cw-{G0ZvVC33YLYPh@|t?_U^F9 zaZmwG>g>i%3Q`{kJ*hAJmao|2VzFr2N&)&?c%5b+onYUGbzQDKyMQIgm2J13G|xBzTs%tLC4XaR<1O=-3v=TW6Hv8_H3_fcOVidv1c zB(bC(Y;@mM{cTCMYCJUV_t0#u)lFjpGS%d zi|G*Qu63jRc5vRhI-KCNfnMLAj8W*zX&HB3a00S?5ox(M-8;AL`yrdm=k@oVzXbo%4j*Y>FlujEIA$fra#x&u6Qe=EH4J=DsN<2T5 z40TX@KEg)LZA0E=v{!IQA)Na77vF``!-jX}oxQuv5=9NI!7aG^Wk?UeczJ4=!4QL_ zV*Vyz`MbIndi$m1iv2Oh2xwdfY^xx^l$pfV(z3ps?)f5aynn9n4E3OxcjMsAa&LSW zF+y8h{_x4Hp;D#*`r0%yXZBgS>ShzGf7xWyOWM3R%g7*dWYt7qFGPKLVa%Nu93|aO ztXd||n3JM%N{;cE9BBjnzw3lfIH(}-t*3Epb7 z>OW!!tQxb2CsA};?HFFfBPvjiE zK24fVf1yR2ov_A2@*Cgnq3JDR5Y|%w0VxpFdZ{Byww42f<4qX7mJZpjOupjoWHL1t zqdeIVC;#$VgfnDMY3#H3N+@Jr*Q17Iu?yD_s$U#*_PGoBgNcLn18*dSpEIt+Z7dc) zPytqbqp21&*1*=tP_*QNZd%sbAtDGPQKM@(xA9W%rSgwyX0_0wqpIgk-*lUDxBcfw zZw7pGAQV!1V5OfQ5TuHxSK2Jl9EI`gbNkdNx*Kn_IiygUqt@Z+@Y6Ued_iIiF~0HC z62YNDRf8iBbhgag?HB45n>$@0fQnlnw7%_mHc>qG7_o$=v6cc(uwSq!MOA52piwqq zl|?-EJd7g|^Ea9Q^QhVQascInrWa|b7_31Q>!fFTf|i-+U_bt%bbgH1hBX*lxQ-kr zFB$JRlE7(QsJ1Q_3`GRO<jzXSmBq z^K+^;HbwItVOnZYEN5f<7=<5c^afvSCipjIN0;#e9|Vt~ZIrIG3+Q+|gS=S__!xi( zgEO<_dR!57_9JKbdRRH_=SMIs+Y%*Rx}Q-fkhqaTIC1XeL>S(~?H{m^-};OMAQ+MH z#s=Kete76~{m}K+s9>AC`YO_NOdQ|5@6Ryf=nT^$r(=)c5Z z@o=3hCFaxs6?)*0w34-eiat+B6u)#{-`ovm`Kf-AJ6Cj-(BD3gm%CF?TJ@APx)ngB zEh2C+ap6GxkzkXkzp22b?LCIai$a?K2~9mZPlqsjdhJq2p!=xqKt3nWHfQMv=n27G zT!s;o24k)QL4Fe9+c<KgZA7?M-%22`DN%!3s*zT?g+hEyRt=C!E8CgfKzr4WcR9 z-2klmhq)(XecztWoz>FVJ?5tccyi>ir6O3`D*%Q^*9HBDd7UpoyI{(TvQ2kP0VWrR z&o$9R2wuE)qm8vV9uAjMHtI8WLr*y!7VIz1_U#up9l?dkc$paug#$Y2iD?@`2B$() zre*=5S{P7rrV%QZ7$*nWieqYR?2#vkW-|!IKn!qzu5CeNzV@eZb`?K>n6cq+@`Hx< zh)!Dc;hN;E7KWBSe2!(xf3+vTX{WjwZ zLuil4v3=1A-b1&y%J2N3YK)L*5x@B%4-fb6%bE=(QV%2&+c51Fs0l``wrc?>uf>#M z99AyKjB3C)Vma3Bp%IV}x|becCzNGX(O^5An#fLgF;vNcDuRI2pno!1=ZJ{qll5&Y z`?A0#dD>H~9)ItB#q5=CjgQg}*>o}E%_Y_fOxG}GJtu^NyV|=}D7@AEzd^TgAF^kMtZmO`Qpz^t> zTumxmVe=7}9l%;c7787VJGSV0B!;mHOkcN>QIDx&%0I2psu1+~sQ*c;PLBHIs=|D9 zkPyt6Lis%O;qEPJQ;XC*H?Z>2v9?@XzaMp7vBKPq9)j?J9;PeKdvod_JDnx*PW9g= z`FCTaDQtnm!Q>YpOi+Nex8PIo$pe;XHz&~F%QCfN$cd; zMXd2`v4F0|Frh#m8)1nXl_Zg=ATS8rC+YK0Gvw2R{PTN1bi9lx)awxb#bmi5kil1T z6K?Cg>gv)sS$ESs4R!w?1tr(XISo5P2b@;_xPoe1E%q_^mo+}XpwBmbXxSK@NM0hF zeR;}))=MbZ)K5%up2w87bs&!xuR!Ff|Dt~zL$9{)d~=du)n5{~cCy-;E0+mX5k;LD)0DB3kb$5R~XYiO`h@ItbIu*qj^6^oYr-?HI|*x2C?l}ENL0fsow8#+61 z=|eVz+>~S3Yatpy1NwdDIjx^hmq%1bdXTd_w;BU6B+nY?Ti1mMhCH!}j}L@&s?G`8 zckHcaw>^a*?+yzR83){W7Yv2R(;!Gu=s!ZOoO+i5zS({V4u3KCB029>n;deCN1;OknIAuR0o;){f<86|adJj5v>z=vlZc<+-i0Ye z=B_2~(*p`1^92_xpW+1P!i^IfZ$d~_3f5>o6+$d~mrC!WaWg|GZ|ch(BD(}_s=O1B zc%XQ(+&AXc7J0Z4C7C{?{CIB|akNnR;q`o_5@h&QP2w-mXe=)M?1!PaWglOW=uJh5GeR5A5}8GzTj1ML2o5L08ore z>nD|;G$}UY{3^L4;VSC z8hO7Mm{_}}Vmkw2cuJfUUxO4E`og$WmbTX>8j=uiu;i9oVo>(-^Ih#U4` zFNcVEJ!I_NSvml+*8eu%(Gz)kQtws$pe@Ic`E8~7Yr;Z)p!$~cogj3LU>;;*sGO?a z&8&-xsBm3&qsLlq3@)PU*Xuvq_}ONvNTf0jONn7(b7Yc+kzDyQc6nvby+fK-bDW2t zho$4?#gE{*UA$zkKqmOwFf0pj%Uu|g2w}&0Hx^A#K)dg8A|~ni`j~}D3$`U!AC-3$ zKkd8Of9+?P`%0Pw$%gAsV*QJLMU48l=iUjsGo!l3tgXW64g7(r4<^)0LLBkWgm~_< zzS$IyE_~stK@@JL>+_W2rP5+4)Wpkxs8C9iw(^G9&-4}Jz`wFA-s8(3BZz?#aZ4}) z1ZZJ`KP+;d<-DwWviF{&ok2Z|%@wZ#Iv}!I`q8UZdwso~(d-V-J@@?$g2uSwH5<@| zc0l!TBU<6UqeTn*dJl=($I5r~|#0t@^#W;LHrXx8G87c1yX3C2Kmg32@ZP#b16Z#WUi5CBdbx2Pj!~(xFJQcn zH`XW*n}NXjF=urKprxZ=W1`d)d4~%X?jLi><7-5w@=Oo~1QUC?VpSmA0Qx zsSjX|yf+W|S0jZ6>uXIKNn=Xa=J;*3Z|EePG|zDC6u^r~%G3kzhhX3#d1_w7;qdB} z!7(zKb2B=J6&q}t`C8Ek(FTU$J%<|pW4_tnL(2^)i$7DZn%)kT^LqIfr%3Jc<|Ia5 zLVzB>#yIIv0N5YlJbj9r3%6Sa|M~NcPx>?$w&H^RIm=Nie-Y?A>QV%$Za+xR85wVm z(UaF4D0apbnwceGr{&Om;Ws_W<57u8{~2%=cEvv7Zr0R)CqK3$#E}f-w%ia6BaOEC z6JTuWZq1-^C0l8ViWQZ+cagU!iOaD!Yc;v#-1g>~hv@bG{}}%3$Ags^uxs}<1ES&d zW~WWUx6sg7@v)fh;@NEz)Ye^SHqHYtKbo_t^pruhz~#eLRn{@44_z45j*hehk`<|X z2|p1#`VlY=oa#k!b&WhuJ=e3BrqE|kRj?F!>Mw_3LXdZgkk#H)Pq?(jWosFsyM}F% z2cxy!+_H6rjE}HxFZn=bj9suliQ|pal&es-a|0i(MG+w-FgZ;#D$S|i4kDk}p`?S& z!25}RbH?(F-WR)x2=HBiOZ&eem6V~6M*$?@9Z)*4XJdt8#(Dr(f%gSWohgR9*EJMZ zU2C{^$z$W`4l}&8mHr;mf#c~Qm6Ln3lb^O`fACDbv-*F_;{HQ4Z5aC-Gmo!-A-3_} z|8*v}mF6=qE3ZaufG8S88>$lvhcxH;N0q#7=(-rbrAO9OmN}9lGNqBj`frklOWY~- z1xgTG#8?o5KFqRMd77&Mqn=U1MHa^nf?tqt>6eQs%LU?_`H=afs&p6+>o=<6XF>r` zr)B+CFEvNK5OEp&a0u4CB8O}98)v?^2i~5k&@9X>TY5gJ?XaEaVJNafiKjY6WY;Ps-D zd-rw6M1Kh?aM4hb7x9!4>)!`+OT`yPYCX%__1nGgDj82g4l@;J58qqTarU1ARa7!>`lU4CmS`fE$h&!nkM6O&T`kH ztfq_t{8@d7a6Qt_lqC{FY#n;!^o#$xVqJQQD|(f^$O;N zOmr-J$0DWg8s5{ol$HYD7(0D$M^7NCm`@nvl9B%RKT0J^`U1@0|AuYs=WPCj1BQuJ z>yQ?W`XGa9kqG~oY{*Ipp2_Q|rhNihO78C3S9z&n*FFNu7xhW{O2mshaFdu7WjDm=g{$=d-M zGk5SmLY;ei^E>b#{?1$in>-YRg{jUvoyM|2R`Nmcn2U09uHwPZy676#{+LZRFA+fk zzIW|o4gMdvP7ygrNZ=_Ev1}o?Lw*c9im|`ZEQ$6Vlvau~1cwRW2pfwNdpCSxo#caA zHy9r`hrAK}&5_@?gfvTD-R8y;i2sMKd#+A)3618@C*p4Zu2H0#jc5MJZ5KpNsN>|* zdgI1U03mjMwIgh&4hx{zSvQ0JhuD)XQa)fq8*#mO(yvUVzcBJd5K6)x2d}xxp>SXgi^j!AVtgQOK}Xaln6mLw z(17&KDUs=X#Vr4`!LM8K3UC9NWG>~aQ4^d7dkE*`ki_Qnzo|hsOEB@+_qEbyiHkg6 z6;sL-NGuZPZU7TghQzHs4iaxL8VKU<;8=#DUa|8N%q^k+tq5`wem?3O#t+`7adbiV zC>9SZ20@$c?1a`-$mqQ0V5DE4X!I;b%7(=X?@uPTX;1-{`A{ z4tu3md^X5*dzBs=EJfzU*s}rSO#;zdMFvy!^&5y!4yd;pg9?F3l!}2v+7qsSf94QD zj99`6NN9i#58HRLP3V9#wzHEU43wy2%9X3(rrQtyo*Iv0Ip~Q;BZg_tEq9lBC~Snj z;~cEN&v0vcbx5-CQ_Qz+l#`&fh`y{HQNH&}m_^qzWAEop5j@E^uxJ=?=_grH#lY=| z50^lh&s<1EdoDQJQb7i4$f3j@is`D7<*V|0F42?ktyL&@L7zl0HIP7oG4#|K(umG_ zpP+~Y%raEU#|*Ii7(HM0hYN96TeCT_7H*w`4_kiR_H+h|xCUg$OVfFWKGFH!Bcduy ztQi?R7zqlb1UQr(abX#f7sW;WbONCoB$wiy5i+f1PMjD$bV2Va&0G-5_{`Ek@K)HN z0|+Xov-kntqy@M9-AZy8KQH$VES@|$|vm+Y-KTfmNCitxD%Ji;@clVYROTZQWA2j+n+>fm zC^Qbq;)7p_1Zw5rlLqo?{X#|xPs^rR z)J)n^WI&O+j=a(*=s!S=0Q%YSzOP>(Ql^8S4I%$sL_#x<6}wX$y|4UOj90#Umc72Q zw#O+xT1(do?Rjnd37UgU_s=-sH3NG?^<=53)yz)KMq59_4$veJ?(1#VHdIeRH*ds6J(3>igQW_8|L3o;n@%fx(EvX z$33S`SS<#Bzmn^;TbpM6RqyLlc1TMgqWc$nf>cHCPSEIfbk<)5X;$-3xFRys6(+*= zSe=hN<-d=_b|u=#^?kjTwY}{wmDIh6d5!J3ja?1oi^=yYt&@I4(TidNKass1VuUm3 zWhjgMqZ}t9#Ew1>@{o_9KM#|V`}R>kBSznKLJUY(`nZ7GZCIv%_}EsO1QUnrGrohc z<4L~AbY0r??CkhbEf*EOC~RUOLuR#X;7wsjDU+UAj7sZ$L`oW2oB89?s6hpyFw2Az zi!elYaPrszzxXCTod6}Q z>WMl=kTk$mG9!b)T zH%`OOL*4Zc{R``7J-R`uQCeFcG_~U@joHrFAY3T%uxO2dj(k%VfIAUnV2xLf6_Pbz z%>fC0B?ks6^vo;R+7}I|F5w_|DR#0J37$+|ocVb1#EW^hh;3WEnw2}20^J)a!>_|) zZ&WWDif83mK{tr3q^Ow|zI&8VeZ-N&;R#Zbz&o6Mjky|7ETKm(bmP3?EJjKL*RVSB z|Hbp{?pGSt%>AfOM1{X+t*UB=o|X8*SRPv*2}0tAgtq0deG+U}UZT-AQ3#MMJr8W= z1|8C7gSFOc@G1dSFT#{|cvz}5Wu^>@J}^UI7!Io^2Zm#cjF1Gwno6(zIA~bpjl#vN zj)+3qSoJ{KhEB{W2+G4&&SuaOG6sdAphLKL(ix7iZ)=Un?9 zluf4VZ5$$N_q0IJ%B(etkxTPFZ8#)p;auN%69j{j*&Nnn$adW78AvZdvB(^wx}%ha zK%RyckCGXA!Vj%Po|Ib~(a!GjLS^d^{9AAq>w5t^3qV;eZ*P6yqJz$=7bJ;3x3gSoZ?|ryQyIl zg+&jipH!i%{IrSFb54l2Te`i-Q#=Gg%z|wUGLry^EN#P}EFNq{tAagA?aluO7_IU0 zy7sWBTxV_194B^>G6+>tILbyVT!|Tk_pl+etVwAxT;!!-<^yRAFIc*2{7|RF38tY^ z>NN!kfC?mf8&Jx+k~3ogA|y+cov*fz`!4@p;PNa}*Br6k{P*X}AEeS5km{_A9b^rz}m?{Pp&6#49HzTVzua zz7(j#u)|_eJfsjWen!n{=cN@yd)WN{D$@N;=4jpIHe5tynh?JyO<`H-^+am7j)u+ zt>K!b;ch=isQy02FJ@&_oluCihx$*;@>}riR!*1byU9?05cuZNw&JSfon}5AZH~xD zK4WDP`YTx0HV`0eerFyg0iziEw=`xudhW1m{ zJXOnMPTZE?xcHA2vc7G405Rr3wT(++h_jTXS%BBLRLPP73ZH zJ>=xS=VwuOEDOXT`$b+GCHoY`S6K3m$%~$67Bwx_+=#y#nb}vmiTHYyRVBjD%kOhu z1>wH{Sy&@?99e>SaIMNgl4xPyUK4>)(V<8K1J=G4(PM+kG0F~nre$koqvJWF=$FDk za?RTFMv+&}$^YG1h7rv2w&1LQH_*t;zhSIpxIE;P5#)d)4efP}EE;;*)%=6yCZ*=A;Jh}>Chz@8Hf^vGx4O~V2YcP za>I>b2#P#9b_3jYZyM`Kdm$u6 zdy4zN=}+l3HSDnD#B`Z5hZdufNsT-WN-^2lDr2uTR^us&$qgN4J$GSZtY8`eaKGaK zudPF<Z{?VW%tWE~@0l>l-YXj%zo! zScWm@|6ujCzWTz1)JkIy0;e)k#un^a%{c!~xteGKygoPWd{kpJ#=yid7E6W}1ckp~ zoogGCT=|e8`mxgr9pFbEspCOZbwLUAUb2Xj!&6k1RWL->OoKM9@!u3=8{Hd!!E|`d z=n21@8&&FueY&iN42o0`mfJMB|JbkthoP6g3V68>*K7R2>-3o#6BdmmD=mWHdx``M z*#1?O6`&aSdw-w|9cJI37O6Y3KKjwirN)Z(6xTfazIJWj9QuY`B@@9EqDZ^q!v6iO z$Rbekb#HRJ_PuQ4?r@XePLM(hWV>yX3hOW=_zy4(Y_-0K#&m3&gzh7O?`v)xK z@7iQAh@}5cr0<7(!kbRw`%sy3DfA79ATqR@k4MHu3k#4>b^`GQ)>$Mf<#%cByn--P z>hi<|BxHzCli~CmLfUV;PbB{3NA8t|Z0GdY=apjbYiK$?!LV*Yr-eAA<7QCCsfk)g zT~k7UOZp7cH1sJ2aqs>C{{D9Qm&F+>6oVOiQ=OAB;w^kSNm0NYuDk{bDUhZeHw;G} zOOh9x-N@i8>G)DPtChA;;*VvX(Zahe_R*%y?^G4cLr{1P(DG0mnEJ#528EvvC2bw0 zJZv-NBq*P?o?lgTRGby=Jx`j)N=8AN;(VsMwD}@$$5()L5g6ni+5YS5_dnGr);){z z`H&Djkk}`asFzFS!oaHe^QjsbryxNXcw-SbEQc>WX&Td($Xit?=zJ-2Z%?+6U1>#j zBXEqhlEaWNda@4^w>fLKA7R?V{**2@cXzi7*$nNZY~MK};esREmH$(`hYWbes=tWq!tI_mqxs(Ru?V071qi;?eZG57^=4;<6PjL%s1(m&}KQ0Q~g4 zaVk7=SS+CarL5om0MTidmP1A83%xxZ8k;+G%In~p^?nEjXL|wa!Zyy2(v(JSAI^Hd zWoFRv{fCB8c?wVs^R6^Q3~m)KE6j@FehhUx%=6a@_ro>QJjeb1?PWE(VxjJjj(-=O z)v}OV5#iuxg*}}@xVu=B?N}bnY6*fx=N>`Ep#4q#e-Q`cO0(d6A-0AAvKiT=K($HVx=kB>T8?F|o~Y zi#1o=bjG<}s+)ha5#7FbveHP1j?~$-q{t+Ni4F?Gh8Iey?!nGt`M{U$MW^CWcSNA) zu9h&txbYw?0sg88L287ky61Ql^);lQNg;H{(?Ot(gYqNQzu#M5s+t3O5X;cNg#Z$P0;pO!h1Q1Kg(5cAXmUwsV1GKz>g9c!7%@*wWM0(glFxt2*@ z0&eMRz`)AnM1jmhy(qJv$Fn8-LPRv3um^9_SPd&HrGN&y&f0zsYXDtwNob8r2$Sh~ zG~Qk{1YD1Vpi9pnC(*L#D`4L8Idgq}vO_`*|iVd|8hU%>Xh4V@W zTv;S#3L+^`aNeoPMgf#AhXkU~N?{88Tw}#Y;|F7lpYB`X&XZ#-NGiqbCzRCOl^+@x zyt)Tn-ZhCVC!yQh@^srH@V~U8Jf5*KPTOU>Z0~_t)TP?7~ z2u|WyJdHfTIR+`z`Kre5nkQ5Nm$?bi-7eWKw`3 zwUbt5*r!k9-yQeX_SW-z-)Qg@in-x}De&9gE-MfP9$O<%=$Eh$S&OdSe`Q2-Rt(Q@7R756^QZce5LZZ%SY+&{H2^5T*kq4*Mx38rf+PMkL%wrCuNfEp8*MWj zf2a!%-*hM?ojKl-82W22YWmQ~EM^{@*BB-;D%zuPF0a%ZoY`q&Sb?k4JmDY$dg%RS z*46bekJM zbhEZHU#q;9jtn?^9wUnn68I)Aw0M7(lfx%DNVDFmYERhc6L9n{%wK1YzA*nSi@ahq z(yRD6_{$dCdcJ9!le*80lr`OHm0UjDCATAOHIb$#8ENf|pgoLGtcZ{;+kjy4 zkeoK9N(^jTq?FH$?Q&CAmo5ezVr8)PH z{?p;}m1uE9?>RIn72bL!%llMJ&ffczZn;C-;E01`&69aMAuM$>;l=y!L(}G72IXB& zML3ql3r#D1-B?68A&ojF3*ZFUMLD?6iVeQS*alt1-e5JjD;nyfYm6w*9KmE8ZDZP8 zbpyL;l{}$H{@`^|v#rptYjyzJJkvCe28b^yEQc~|T8}d}Ruf(u{S#@PnV2jXcTR(B z2i#S_PQL{pk59oWE7+jrgHRTk%GFy;DhIG6upJ!T1KobxBbhqVn#tzFw7N_&VkONP zpdSUw)~c7n1_Og#kx|+ugYZQp$6(6I7v7i(g#;S7q6pL&%F~)Tz&ZQ6*Wo~)F}5{9WW>9F53-qV8a@3= z+0+)tDu7zVQeh9W<#>xipfph9hNBcJPJ zT|xv#1C{-r$*e5;lH*@ZuOr4WBs_P1H9yQoQTakccd|>&iXCEytiDPCNuHoVCn-X8 zs)2Y2+c$oHYr7Ot59a%HF)c z?-qL;CJWvK9hfVG#?}A<0b!e*OnEo!E_`ii05DU!F_PX|@CLJpd7#nl7an>f{(*oB zNEJbyWwz=IBZFXXRy{@aOzFgVV(O}7-M(#jRY`!O?+>E*Aj`8RjAZ!EEl}Z-A{s9b2tNscW?`=N+f%yZZy@lc$7n1O22f(ww8vroV6vHS@$@nU5;7X z4e+&?2|EoOtOD6I&%Tfx@&LL)Y#QXud8I3GQ#y5Lw-S@0(D6pNIF{4WM9#{vi`Cbn zeK*xrA@GMskN(W>9Cas~YluIKe_(VFnyun)keDg9L*l_%I6xc5$4muVwBzITEu5gd zd~=u=FW?mEZ4xAp%-SN!cj^1uv{_ulW?W z^5RWUZ6${O+@1EIX2zl*>wqXYFS-b8np#1JLYjJL)Hz%}Ar{4hPc)?~vS8@fF$IZ` zuDl?=7BzHT#aXoi)VVm4Kg}6yo({X30s`lnnFoHOE56vu4Y649+%`3`?S$SfF;Zr% z9`}18l++z1Y<%(7AcU`#7!<12V{Zc-(kz;}4<*;=R2%C**EhuArq6E7-*KRH%F8>% z^&&#!F#xrkl{XY_K2OzFQZ7ikS-r2+yYLn9Xy1I@jX=Sy23FJ^a)G5SJ(?`bW(qeE z*3JM1@RxIX7;g0P^`_$uwX=d@krxh@w9bU51zb75|9r~f$20M;FbSFFt!*1fLv6v3 z=(Vp=q!fzt2(J7#T4=HvlxaHWiwB-L5rLw>7u)jCFI%?&?HWU004r(oA^^b-Y(}>d zN>)(o=^~OUE*OvMU;2Zq)X-6t;c2~#8zr0zSE({*DQ<39zq-x#334&#Q|KohYER#U z=pQEvJNAxG`c$rH1tsea?bK>WED%XzR~%{0Rc>~lGPle!Kn2&&_Cf=T3-qAx1NF(n z(y~v?=IdAsTT>Fu6q(569VYt%B54eOk=E?Lpa=N4b5V!dR5bmWutRudUNWhq>K zi2ukSxzBu}+i6B69m9Xd;;SiaQTDY<l~1ErN8hcPf;NKLQ5A0DV* z?skedrk_t+z}~sYZE`6>?$F1faO}!tTg7}$P)q&xz>@vm>8Uz@iH|#`$`m6zP)B=h zy-jVxkLJhPng1bbzH7#fzwV$Ab{=XbD{$y3X8pNSxaVGv(S;hS&ghk!;Qp_Y3bnv) zc6&J5QiZz_wmf-*i{L6$UX-#=`{wn^yT2ym(zNw4zc6Sr#pw-=GAi3#Ed82!D~I&{ zM66<;ylG0K7r4Y>vAH#nDM0koX^V5R8(~7)?pb-*kojF`uOkZ<-f@Ooyl^c|6-psn zGK%L`RU7dyXv0_X z#LW(d(~sZCBE7lBnT9?S#{(sLJx?{=Cpzxkw*1TKKawF9(!nOu*lZzWQW)t?qxYf0$=5ER z{~$TIH9%=O;nKOA$g8!nOLMK}t=!wjs0d3hkzZpuhab=$1)U8;(FPQgvXZ+#-881D z8NwT8)a?U8*AW&t9LjPALeDaSEt)t$ohl8KaMkL zl3^1SzvVbT1Ie>w!{LuT#U8=*GlnPT5GT8pOmg-&ieJrimRTaFN-VrO)5YpxC_Nq8 zCUOXz>|X3_?9wa7^nFpKi5J7}V-7=<=aI|dMFe9o6ZLSZuH zL}iHJ5dQwUMLizLY_nHPXVWmapZ+ZzBdI?L9QdAQ@qkfxBOe|mvORN^ILt*kctttv zRAHUUZPyegE3Ao`SX=X@Qh@@oc{lnNPS;-Sz1^M_pW%;o_CP^08=S6X&K_ts>v)tHe-YE(O!=<|_^ZhoTjO!~?_0G{q z!Q#10d#!g7@T|JIu?6%zdp4$4va7j*u5ZnRBXw^$0A-FOA`FSt=qd`Oyd(5IM~_pC zh`ieM;UjeEl-dcKpBCG3;h#(rC`94ZI7NQi$C)9wVTbFJbQtMYvQq3?_Gi9_`IdMa zBdkI1+V&l?4NMqo(4l6;da`h%l+i1Q^GIXcbs?I_s1nB3+AhyDy0@R1;4}9=0Fp28 z*#L=I;iM|^fR^URV+DgGn+Z(nTRaL00k|$;n6Fq2Z5@t@(NjXFP%m4>ad z1dRU2nRVK&ZavSV2V0PmXgv)mJbRz>G$tLr@Ln@ynC?>Mi(C*g2GP+^-B7{{sVP*) z;CAr89bBj4V{U{yaLC2QA03Xc(1;OhCSO~8a2KNd z;7h^|r{a1-%=AeNYr?x8MHV*4sl^inOCy$rH9-JDLvYZ3VRpMzU^`s=1;Psg4U>rJEnu)`B%rZE@f@F8sz7~qcRb5P~2nF zD*z^qmFcLrgWg!M0Gg5Ql1QbI*!N3kKIZpViz5{FYODgfNwEw>(6t(QE5;K(A$c5N zEDrLu)FuQ{;~9qk_#OmkQR~~$O`hIqj^@poF=m86zonKws79Y(LtYaaI5`ssjef8Z ze9ymXF!2c_r9ATU+xoLe9kBOO+2^^W_+@$aXO==zk^AvBLdkOkdCms;B7>#YVzM64 z^h%fy%hU6(gNU6ooG5K|(8t0>YX#eRs^{>!PnIFGD|Y0ngZYdEk^yIAD=fkA+p(B3 zYCPZRRpPW?ujuq@h=gxASSTT;h3Rryxr8nrZ+YJ-p$O#n5F2pD7*P)&_| zgYKG#v9(G&=SmThGFG|u0h5`FW(pr+sq$`}OC@eDK4%Fk8cA+I2t6dJQCWIA+fnHQ zbnM~;6k$1PDd>k43rh5>;9kXH{us$5t6ydQq$&|>{I&_na))LM02KX>dK2jHRd4z= zTcCd%mMSZ5)dm!&*}xa;MQMP7Ehx?&ju@c7PvjZH^X2CfXa-{?D=ez{r^nBzp+pDc z)+1HJMQR(U+H#4oNVV|+u-f1hM$Js~ekB^qyWPI>Y}J1E-Qdl)sorh{a=uZUdCFe& z!{ow!!KD!t`hk4yU-dO<)}@m1Af{FeUO1jD?ws0OaTY_v}k zH@|UUD;tkWIMrf=?m8Jf{-mc`yD?9JZ*4|YUhf}JOZ$cvxfTy3N4sltC_f1toa09c zf`g_LHeDY3*vr?>`q9rs1Ia|E5mg6T1cd%EF-vkY=o2@324FF1t{j~FCOhkN-L6<) zYleNaAa}d!M%c%R#Yl@!v<2yNx9{D8T?G^jbH04^#M`2t*Bg8r*@v^0Cr{Bg&pXKC z*Yf{_Wg*m9h5X2O@9>HJ`0`Um|fdv zy353ma!$!#oG73WS=9-bOz?-lO%H(9NcQ_i=^p1CpIP5H<6a}njHVTBT~5NEua#5S zxeZN&rbMEy{!Bv$Y*uztiOOpZ-m&P`YXPw(f8NMvqdn}9n7;Smh}N|?Nju((=tg@CEsCpIw{a~!Hxlmg62 z7EkZ!62CTLg4W~|oK-B(JtO71umJ%t|70yVXa4-shRW!y)z&3ivy+eJ;<|c4Nc!Y- z0p=HVmM}=wof6bOf*}$7aB~3>@Krq{P;#RHht&y^c6q?8TqWDa0-}3hsV!cp$s3ds za%@W&06sZ&uVThVcsa-$r;>bofE$WhqD~5!S}{1!M~M1GkZ7pA8#X1T(^MQwX$s*y z2?`~E$4xTV!3-Rk6q{ME&B#g4Ni*-7Hlw3l+i#vtGO^kVcW2?*!huEX%)^CgUD%O{ zPd(DwTvJC;B`5;N8k-=3BvUR9+DTDigpFa(Qph7BtketuI z%Y$ldo?T`u18#uVFTK~!li_9aOq|tIbVrL9=F9WMK%8WYq_3 z>EAZvi1`5U>#o|d@C|Y!CHvx4x&RD3WI%ZiYHdt&R-u_mR6eUzqgo<*&DovShxFoM z=f94L$pE|GzD0_kMI=%6)k|e+X@{~($m1GlI?*6-bym&LXP7-P_lcMFCWdxPfcYPb zL#66I)Xz1U;&6PGk{aHevYA!Tch#T$G>I~zG<36FVi;S<6yIzh5*Vd3>Pz0ItJ7=L z{cI!qUJGOOG0pV%vE^t1dw>|1ZoDHCg=-4GOUKuwSt*0C2nXESxlKa0ih)xqs4$qF z69^|FTyyyRw=2blA_)`HX8PC0!w~gjSQxZv#n~XB8*;y0&7a6~SY=bLvAdqwOepBYb>2`B?2a3I%KONn#exM$|6e z^c_OUv7?2;?sCHW3O0C5+ash~pUcOt+0g`DLFSE|!o=ITeQ zbX^ww(_d`^uRyM8^;6|p1NIE++|fr=M1gKtlyu0p?Y@>J8u%+8p~M-TO&Zg%21)!R zOQELrZBky%r;EsrHA4;@1|ET3d_RQTOjnNIbmddyvVzveqAbtbzmd|cY!0;GC`7rG z=gQ@Aw6Vp1_kIrV{N1<=Yi{W8e+d9qn*A>5Hab4MbAo~tgtE2rG6=M-J`}8Xyq~RF zq9+evaIl=3fu9WYW$95|3%BFwNGD2L!!i1Jkc(*Uqni}oV;xVg!p@kk60gLn(p&*{ z``RI{R62eCmK47hOsY;UC5gYT>$bLSb$5Ge#zFo)oz9ByrZqDfKIoIFQ@FPQj3)|9 zY_4CR3+n3bVpbp^v@FiW_-zby8In#Yfp&?#IGAfp5h@K7gY*i9zzIdO<+j~8-8Zb7 zaxwWbF^ILD41BJ)caF@CS4AabtV(7pX<#gmm6GZSK62j}(X$S$p4U`Fi5K4);+Kuh zGo5q7oy3VH#g_4G>m?SI87}D!cV}Cog>oB_Xt+aaTf^eDp*t|$RFY-^;nx`)xpY78 zf%x z)D&dJZcbNwl46@RtRWbvPh%kK?drz&fZ^ssY@N#-#MH)KVIZQPB#D;f)tqS&)f%i@ z$qi(ckR;qU1*%$PX}dfOG}FfN!jC(apKwaP=TRt~{PNhyq$>IfK15{j$MhiT zwOPWxOa%7@ftD(>nO{m7Ru)=XfQvJLOyfS0f(dHERcct%a-qOqxgKQvoo-B})mdzs zu*30@cfYD2`f0i&*OhIZi+3-prnc_@2R&A&|9M`1v-BpZ)|uIW57ed|=04uwGq);| zN6a$Pl7w~Wt^MccVJ*BwnHgpQqarMkXjR9GFIk|M>SF>pHLW4S{WDxLm}99mg%>t1 z9-{zF{8NOE59rp$t-G$+_A>;)s zQ-ba>cIm}>oXR65YVgNO{@dB!G$iKJb~J$59e^zv-bv%|yim)2-tSKh zbKHI7kGuAT@JACF12C4RS+?p*fw#RuC5<%~{B-C)$?7cyoD8*Ds%=d;e|94-3^^20 zYQCC@NA{%}39zMsS=RuqvG*vAxO{E@^_n_Mnb5kaTI?d8#nb?X9!9vRLBbBva0OIK z)&A~DDrwHQF00^`BqEkD5mtd>b`eF{+x~-+iB&<8E(+#M>lG?6WNSp#$BwjyQTr{n z$y{)F9>F+Y1x|YP5>c<#Y_mG$ z7-Jz&+KlfI=&1f!umC!O{af;<>RIcAs<&x$ebbY1-&<8r$`)p~@l-cx7$JS>QwnXo z%G&hWViXGIw7n_iZwMXv2$tPN-U;4m{dFKls4=ds>xbnN(Tku-drZ-0A3?@r0J8tH@rW-UOXEwmg^MS7F^7P6BF0|)7Kt7B7-Pgxkgi_!UkFd5jG z*h^Cw-x*B1uWP>;#Jfmb6}qs)4Ow_6yqf(fh6$I6BEFdR?$#-a&*+?xEu>uf$ANW- z<~978Ha@~sAW-Pej6w}wUrV)AfaV# zdEDWZgBGqLwy{W{OkX=px6v7Lw)Gm>^Y5W&kMos2X)?e4{Oel&pXLklM8P2^UYaek z$-{V|Y!55nRrg{LU^*z`7}sQ z(pl3r2US?ZIupK6R}(3KXh%vNqrXb#m<^NZippB)E0tYjM7U9d;dWJ^4M~86je384 zpJ#*3ZbXcK55FeppaCkyb@7)g_DQS1%PZ`Fq93DqBif(JlA~N!#r@tfmH~uge3=U; zI~d7$lS`UWKUw8(tfgx!<~wBRtuHc6Pmp4r!z>VN7)Ts3KBpGs%UPv>H|cth*Sgfz zh>~f8)f=uV&RDzN9iqvr?Z{f+z-gSbH0zV!}zVxdZnEYfCMmAsHEJ zaNdosJhN#7L!T1AE`AN?Bg7PQ1iQjJ2@Ya-rER~<$2R{87sc{RB(4ja253wXOX=Nf z;;X>%E|1kLHHj(A&I~Rg0 z#tu%jdhYN&_%Z{@KK$PFf72I9U72z7a9FH;Kp7NWXqt<5})wIituKA95`HQiK-vYwNH>NB@a=((UNxQgMiXts8 zM4lQmS7)d1V6bQMAt$f3*``UqnU{ul7p*qY?1@B194<%1Re;IQVT+A&0qlappGMP^ zxj6*6N<`qD-ohM(@Z{L5pPtXPt<{uu&?%Z)t{ZxN?+drq>%GV}+Lv6pZKn@Ct&Ehq z1ftz>>vs~J)eNwIZCmy)7XuCWfm+bx@#+i^7AWmh@o&wr`1j)$({S}BM;VSfNcWO0 z_V|^tbUtBpnm1+a%=pDJ81~+&AC66a`$^sI#5_LvKi_}fgL#CwZ0a619DhNcM}Pm{ zo6p?PE8%A!o|QvG-q^#^NXg;~KWt*^MCSZ#Q}DkXGkV(P>DfG`{^l$8d{^^)7ishm zxITQliRr)b9xXgMusalQ`&ZxABxNO$n9P>vUXmPpA62C)69qN)A-~RV9QAI(S zGb5iErY1sq0mnX2h!#tMKSu4CrN5e{>gny4SS>5vMg;9ENDbkMcs~t(vn;`g64X=- z4M;xF*ZC%|IIYvG#GpvQ2LA#f;pYhsDar+WM|1vxliXAtgujZ4TEr+w~Eb;Fg4j?U01AY z;#EAv((puM6r~eabQ_oBM!_F&^px{_n+7dnP8})HjI<_I}h6ccN z5w!l)pe{Oliq1qRMR9uAgipORL;%g|&9@b>JEAJ9HB7k{>i}u&4zScwz`@%IC70 zIUqPj__~tXmw@)eMb09AMM~9EP6s2F`$IW$#KY5B&v)gv+EP2m?~kV*z+TAiBC)*Z z`y7*mwG44b96o$HTeF{2C=elx4BX*u^=~r~~!GYN}%Omyhw3Qn8ET#1Y(eP0Fx8I zL|Dwi={l+YM-lI70!$glv|S#NQ=UU}yFs3KNI_OpYfT-7>-8}BZD*Y9;GN|tk4k$f z%GC;Z!43W3G)Sz=^kOGI5KB`qGtgGRp(P+~7-tWqpo)9hsVdUFtxWjK{n?G$>1@_`@Q$AxMt(zW5G@nxfv$uBDw+mdH$uoL|IME8bDKYA@ln41 zrLXN1b?g0)aAOq<}5D5{b zLjmbVN|4TtF6l-_Nk~WtN{#N4?!EK({NCr;UvM8g?)!V4-}Cxh*NKk^eg~OuU76gh zj?eFS2f^-zL0iZOXSTDkmv$Ml$QxTpkR(`Ox2mFFh|WWuf+16tT(7z zVCUn|KyLXcuA5dwlmCtPIM06`Ri;iqYmxV6^CK0(hg?jBh~N&mzd#rK?;*1naN8en zIb$8({QPS1-!ZrHFH^-i;KuA)JQi2T@<30>(A>&*D{q9J5u%~JVdwG?gWcRbE9972 z(O26Q`UFL}a9ITp73AK2uB4;E@?PKdO4BxRSKBjtFoB2KCVO7{YgA&)fWQkLDO9|FI$V2S8k-HmF1UCB}ToXB*d7>1tG)F zI~QkFkx*1#k?<4S37&vOz2X|L1!@*?2BgkV&4ve!g)nbCRdeX=R#G}XZfDoY*ZD7N zf~{uCN#rxF35Ghz8}hKBU5s{Vf6juEJ{%|T}EQloSUBBAaSP8>tFzA9RWLV@ACvAj6F?* z2Wp;%aZvTaWFC8$!FZ7MQ3?w1=kY&*P5rzLldLR_k+wBRZRpaRbBW(rcI{7reYgQ< z)xp*@lDfKkIb}fzuX5ExjV99khf979?*zA=?R9SO=AS3k9}NO!0NC>tvW-+ypQS)j zu^a~fws^#hA_tk1<)#KzA0$+z@jXs$%)35%+ljy*El8(>6Xd_4YlzTqcBZSoeDQIu zj`=q*N%8Iub-@cK?07DxBaMewFyw(v9h<@3e_+GTgTGRdZO41?tn+cm$HEED`L%e3 z>qzI)kDDJ17XRMkpLQQvF*j2_zt1+}^L!EzYJ^MfYml6m3X){g?gwF})d)*tK=ol> zs)v*9A&=3_NDe3Z?o*SUcCI`QqIP&nLK_G_bf{}sO>}dYVzm{|6WA{b?Q5ZRPA1}e znj{s#J@8GFem#+F7AH_IXU*9!1SNKIaaa*(FlD>+EIc<>*;oxi=BC{2_IJvikZLe& zQ9b^-=(K13>4r(mS75va9U?Q(n{g2*yUWg^-0zUi7x7nWzRf4q>&C42Og!)k*`jZE zir-2b>JbeE_(WNsVA&cw#0gq{z|BgiQ}N|j>oM)(=)JH?{G*U~qM{#{7XSN$tR%T) zO2b6YN|ga=QCP*Of0zDM{RJu@C->$@3+;u%`Y1d&dVJViQPj{u;wP&TfZh3H_Us8Yw@uBrl46V%ADA^wlN(L?1*xM?zOa0Y@IFUFXr3?;3d=#)<9mC z(&FY|R#LfAkZcFbWGjuAkSXZ|zkvVtQ({42Ht+Ei2vtFj8K#i%ae|Pn(hGnmHP3b0 zgb82WCAzq~1wm63-xuh{l-7y3u=Q-#9+sUFtLv4^xDO`VnP;vIlE40sdm^ zVLQ1Gq#x$5eb|f~Bi>POFbyhib_c=X!~_g|E0l%bR`i}I1)md+3c6%kdJ|m(yAW;< zPUsV&Lrsie$0p;&Q0&mKzJcw(s9GQ%d)52BcV#M}DY3vWA(`;pe@)rVZB zKXzVBQTP6bim3bM=PhL(=^Ca1i!%**gryP#qEwXxKuy@eEAOP>+vB_3ucX=Q)F|}7 zOJC>Jh_imh-mQQ;UB*(BTj4Q{+{G}BxAUxqTlb^(_vmzDOxvGCIEjlZ-AAYIOxt55 zB0)F`zd2ei0!5_nft7Dwq`z8ye6nhEi_#O(O;G7a@=NHw=-2?N;=w~CGUfBQ34|Bp*vf(PayNbemt|wm$pL4Isb6#H_w4G#f8tYu^~8bdW5{*1NlHWkQjs^>_tt6Xh0Kioi2=OjN_>7bU#()eB-VU{Si z*Uu#oS?;#*7FQ!zGMq(ZUc6l0{D)2-SeBx;$bJUTsrPD1oX2SHV`6n+f{uXD6{}pJ zo-Nr;mjVgXTopLp*YJ7Q*_$Yn&C??6e}9;R0iDx;$^GQbEo?-h?BL_|DjWKJk)1;n zG%M~`*z+S5tSciGU-|XfRL)Pl3L_;r-*P8#=yq=~N-B6CZDhMdra(!j7 zj7b3CHliwQ&j$43W6i)}B!~6l!fff2z!r=#4Rco)*~hbZP_PEDNHyd%>-9?E&>ruj zCBcJ@Yyy=&`7Z=t|6UuN8B=&bqYPN6+pvtL)x4NfF6HO>B6zfp#~3>P;{K*-=YDT2 z{>og}4}5xv7?%2@tJQVZ%V-c`RR2LRr>zGAwMKdZe{L^DDBc3;z;xw`QtnF)n8q|||szfA#0`0AFSrk*j;$Ucm87=9KcB#ci! z@nvA-l&O3urvA!{9Y`hGU_WFm_0@p-=!Fm@j7W%6>n(h1>MxW!=d0gD55=IqA7t(| zFY18+V{cxT`J^+%t|b(@S3p%6sPm=%@W~}bsp7if3b>=Ksxr$?WVV~C@W}dP`ET68X}RCWFcSF$ zjMrfWHb-;SDi!8f~$Y5g`40_CrOZFP4B7%x9) z;)7)LG-}N@%i+Bsz#Y;P)$uLikQ%uoqWW2*%DAO<#IUum9n^!A{Y{%9tx_dDH}V&o zXZC646JS`P)Wcjc2Ce{C5m}zNd6Vh!k@=cmHJ-Uj$!jz0p|(V6o#bN~8~ho0Rm2Qg z`^pJ51(=AFvZU3{lb~fbeBf~yNj5IOG|Om$Rd(FjW+16z(#YG>#%x?Wk&?GeLNB}g z3n&D;1A=^eDa)~EK35XJl#He_N`+pMzR6i77kK1o={RK$!a45U_q!N$L$U_$`WIaU zTziZc5ze#SF5#Oa{smk$S2vqI={#s*DSIh}HM&np)1~SA7EAL-T1A2aY0M?xcgv9` ztc81J{bq5@;(4|)h$|OU&afkSwCTi3;QorVSzR%4&DyonEz6Ye|$tZ%I$}# zIQ^w*Q=dFi_|h#KxbCt2#WH*y=RsGu0j0#dpt~Vw+88^^BwS!(EOW?l(WJS4sHH*5 zBgVI<%*uPET9!jh zXb{Gd;Fwx#@p+l>6S7_qNjEf zQ7xBLB=*-5u4Gm_s7xB|RzfX9ohl_J(CGTa5#bZ*z4hB)!&9g*BdRbsT899!f>;`{ zua8*98a!z(#YA@cQp$OZ>{3FmM8DhJ>#@+DQTt-{b)Lh;yKx#)_5BJq|iXdrg>^6)vdoN$9 zus$)Y;W8XNJ^9A!=DS1}fUlY4y;3T6z3k~d7U@L}l0?OYzppWk zcqz8F+nC(m+7rBU3_dSXs}9m~%^y@}iRz?V1aayXd-e+&$$V^01=W&ecEt*XYBIh6-2|MHR2Aw1 z3A@*;+eX_pwjB%Imp|AfGbA`fvxW}00NWIJ3J;~p;!gqXV80154W!Bao zW)?G^$MQ?i9D)f_>zyI%ZP0v2Gx+#4?(;*o-}AL|A9dLeuvn}WO|62bLlei6l*e${ z2C^G&(zE=c*^x$;9S&3<0EIDS+KnWyH^EjqhMzVl4=>@Z0SHn74jmZpJVSE6`ShZt zzNG@*Qk?myh=iKl$iT&KLT{pS<%uXJl|TCqgSo73yClW?$$T@m2}rYjBgOgR$7K&u zrUH8UrbJHMDVS^0NQH6X)u;2o+(&IBV(j4=ZzIBo(joLe(|sWy z`H~GpqCG8?Tl3gJP{d;tdQzA0-wQabg_BBtWFydSsMf<#^kr`U=}z^*oz~EAsZzM2 zB2-07?66svDpz92M5*wf$uv*Ccgf=h0G3Zt)z{CFMxj5H8H#*z)2pe{z@aKAQ? ze=XL~92xFW-2cKoQa!|P+VP+}EKq|Wdd{fdF-*LI1|ULAn9NXhxlHOnTTWvR=l_{;6E+O`CSnj6s0btmZnCym}Z}4M!dh(~N zBgu~fs#=nR4-=0%%u0!k>q%huAGnTYA7GrSdwU(vzotMEN4%R{R@R=LAbMNr!a8=4 zAiu~I>sp|;Od5l_UFRRs^5M>Ylh24;V82hUsN1j6KO%SgiW>W#8^<6(cUfzc<^?7D zS6xVLmTq$2PMKm$di65~nvtn9g0yuNrC_BQiGI-Q`hs>_ll&08nSq_P%mU(xgO7r5 z)b;dTQw|7F!r8>h{n&QMxud-J19KIzq&g6-uOZ>L(2(rN)!Ge9@mV48G zNBuF(r`7N{)@nj)jC+BopWEuB4m21&qLUmsI0*N3{5<8eiRQ6_lYA(ao(1;GMb@`1 z^qbG~#hU&k?}?((G-Nx7lg^rN(RA^!Rwee5**u79eFngmhl9B{MYPl2E89E8S!K6R z_XL%|*0(}n-OqBoV&}94;uUz9%ldw8;H8xi{&tr(xzHhL%ccG?#-EWjb~5*dPwNB- zU$OT`yORQR`%Li0QxDMyhRH)t)F9HN%!LLTC5#U-En0X0h_>YLObYQ*^`B`?t)MFj zaV`pHPgkJhFK@pK=~UEgYnL)wsMyYVv2DC;U<;WnW72(DMTks@Hm85Lp`ZZh3WFUG zbHD&x01HQK39Q+H0^5NaaUtLzsRu~=p%_`y)9BAIX*HG&9e0}_$3(~2wltf;S^<@T z2ZjHL8ci)*1w{e@5_?#JXp4^r!@_p^FXs36-WQr)13Zeu5uT|UUB%*j^_Vs>Gm|jM zoO^RNZVrHm@cI9Bpg6age+Y3JSC8#@xtR}emhp7PGx0|*Tdx}<_Emzde96P}7pgE1ugN*bcR1NO_Gdp*OwG{c_VdNcge?g%%sPu~?${v^&3}A+s=R zCS^MsJ~XTVt^f7&#hmPwjR(uGJ46d8~=}l>9R)mI`^S$%!K7gO1pez~S zQAyZX=!l*0DqFgXc@lS3wh%Z`zeU59?h>RyF}Y-NDF#l9z=l0QAlZ6~swuzALmwBR z{#pqT=d)$LozneOe0?AFdsqRlMu|=%jP`>pvy9GUH8{cx!ocxJm<}&xe;BSVzT8k1 zxv!#}iYpYft7!w_@zEF}Waw+vR*r290(QLxuMc>T{}Qb@)Gj6om&io%nnI>|5SxR1 zpy=$C0nhW=j!atOEdQHN7-dOswnKkgJAFI+bL?4#mqdl{44xfi(FaY20kj~aUX^)p%uwtl!@P{772|p31^V<8 zysg+Vd+u?;Vw!m=d1pe7uRG)`;j}Y6cN;%I4q(ArF8Vi1?Z5DG)Fw##e+?AG_LEmM zvFEs8-sY0-mhxR|0*;C?*i%c_y%CuKQ~;(i)`ffkd8B*fa?1mB(HS zTGUPDx}%NE1HZ+4()Dta)Gz&H-eLFTM98<|sS)L{20I-)8zsbT@5oy}6T!j=Y;-#O zzkF6hUbIf&>w1n*agi2#s6{gnBifJiI{5EqqD9+{89Km&gJSeeSJe5lbBdQtt4n}_ z$}PhHk~s;s6#;1Tmigs07VvYiU!FCAg|2wMUhPC+?epG~Zc!-3ZcyCirT9eRoi#<% zZgnJ0MbTMYRaFW0(z()Xsd^%3D1A3}@l1mj^uss^hyc+5Blo)1BAoVFNAe#%@5zd$ zglY){3DBj6!4k%rqEs~ruUV^V?L7&ba5!^5Ik0HjA$k6~RLEFBn`EwR!K!LO!M6Ah z+x0W;#hpe^cstou9q|OrDGpj;{Y*d>K1r2>sWEMl;y#jbubU2M_MABF3YrZo9xZR02F zjAzCEPpf|LKcl`YMeWk0QWY#ezv;?-NI+{-qw|lDdsDibad@gO|Bs;educfSKXBZ+ zR7Y_zGAsQrHYb}TGJBRsk4{66I*qX+r>p(WNnOoddO_A=L94>V340*)rh}f|Z8lwg z4u4=|25)jr*@LF#TmsndO*h}D+)xn@|B(=I|M+7(52;ri;Z#l0H0~~w?H1+4$Mgh5 z;1k?=+~QPeuM(Z`yJi*Nv_~T`z2Z_UQG*sS3(D1>wo0kpfBdpm^dKoLgrOcaLYASrPT`DQ|P zsu!K;rbxZ&R?HKwIgeu&QOty9o!#Thp@LhLoP2pl9p*cIj^p(@#2LuZg$NhH=>7%Y zZA`;oxH{8xT2J4BAI=QP5Hf7akA_7!mdoiFquhf$;4*v6*z7hL5B|oB0b~=BEQu@j zCVm4$Mc?B8AeI+9ZXB#>erV(&2F8}nYm?ILBDaFwig&F&ok3tLdmr3) zXRL9AzggoxB#8!?4h0?geL(Xdcf$y_6-Q*{G9NdJm3lqvvYcNcSB0X8CU0F{{>8F= z_tck`F>7T0jtKsE5&i4oI9Nj`%%*Px^ej{+0jv{TyNHeu`pM+x9ULs9=LHUsT8|~% z{63sMy2Vm9_d4~ap8tzNwNQ~YL2809kweT*Gaz`yyoELmu%nQ;qTXe@slX|XCpc^cu)SQmTBZb>jMHW0sviK{%_!qKI~ra z=k@=ep_7q#tf^`dNmqh1IzVxPdl~P58HE0qv}|5#dD%@j`eg^5Br!87&TJFg*2sc$ z$nBwqP=e~ty})9oNRI5_V6U4VPG`~1l`Ly|Kgka1=r1GAGQbnX8?z_lx4$IRH~;#| z>QAqeb0!8q(9=1osij~C>6Fn3b(CH0GwQJ3ffp^$a25$@zu5K$8juxoSWsgpm4FN-kQYEvWX{es?cG(~cc?ySS(j;NEIitm^~C(4M{wpScp zRuRQ!4{Qzz=0asQOMd65XIzG~qaBF?4-H9PmIv(I2Tt#hFhT zf%eu^dut^T>9?T^l2=`QwMLb5GZQ2+utW%*QJID*xSYf_iBjf-A6qPFek2JX^)8sF z46^$VyjRH#0TAj`=ujV8^4G`dvtk504=)EOTZmI` z?!k4mBnUh?Nn^y;swR?T3bjTi?Z4?)g)^k5dB1Y{-tcu$eMiN9|7x36!(7fW2bJTg z%>Ab&I8t@fjY=lTz{TKGod2S-9#%Amw*9v?u@3Yqrq=PNk-4UDn0r)#=c;=;tXTL) zYd0Q<2o`>p;>oJbVn*j5b6_S%&kg&op%N=gV;Il({&oy~+xO*~C*YVT;4fXk_!%-& zMH^Cxo9C!0El3IjxK&W`ypJ=R;U!5dl2E09m|6rn22a)mdJkl=mR$3PS*ky}@VhPZ zNE06f5_JjS77r3Rz!Zq#o!1oMXDmDQ zA~PLz!Mr`a8}Be*$0~E+LJpymE>IowHo)iS31heS#Risj3+)lk zjE$Q=wH}skwQ{I#d;W2(M?Lk8WrRe4o?Y^yH86`E{^2?~{06sYmgok@=4zH|`U02z z0|vZqy6=;d&Ft^AsADvy_JfLp19A7Mvdpx*{C3}ijETz99+1ZxhDy`HoG#K@>iiW# zzr9&kSxXlldkS%lf>sX?ihAc0=78AI!0Ya1N>MSDnY*J@xDBZxju|-&( zd#5}Ev^u@fS2S>CK5|fk#;KQ3Gm5tc}l`)VN#oHut5>PF5C0;^nZeiP+{)s1gh|M<}N>GA$<6%X1f1vXh(K1xZ z4POamPQ*hzgeR9@)jg37T@qRQRyb)|(RSpmSJX5mA9?axKMmmac-fVcdAvP6s}vnr xHog1H>=$U&yw>t&7Iiy?CzcGpdJ&t?ZQ!%tv1#s*-1>QF6}Du`9^{{ui(a>4)r literal 0 HcmV?d00001 From de866ea4e4217e078ff08ff146bd95dfbf1da6e5 Mon Sep 17 00:00:00 2001 From: mrsharm Date: Wed, 23 Aug 2023 12:56:50 -0700 Subject: [PATCH 02/26] Fixed up header for the analysis --- .../ASPNetBenchmarks/AspNetBenchmarksAnalyzeCommand.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksAnalyzeCommand.cs b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksAnalyzeCommand.cs index d8aa20186f0..60ec8bf7ca5 100644 --- a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksAnalyzeCommand.cs +++ b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksAnalyzeCommand.cs @@ -21,6 +21,9 @@ public sealed class AspNetBenchmarkAnalyzeSettings : CommandSettings public override int Execute([NotNull] CommandContext context, [NotNull] AspNetBenchmarkAnalyzeSettings settings) { + AnsiConsole.Write(new Rule("ASP.NET Benchmarks Analyzer")); + AnsiConsole.WriteLine(); + ConfigurationChecker.VerifyFile(settings.ConfigurationPath, nameof(AspNetBenchmarksCommand)); ASPNetBenchmarksConfiguration configuration = ASPNetBenchmarksConfigurationParser.Parse(settings.ConfigurationPath); // Parse the CSV file for the information. From 049184a77974d1b0d557020e53a0cd519ec222e7 Mon Sep 17 00:00:00 2001 From: mrsharm Date: Wed, 23 Aug 2023 13:05:06 -0700 Subject: [PATCH 03/26] Fix for the downloadOutputOutput field --- .../CommandBuilders/ASPNetBenchmarks.CommandBuilder.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/CommandBuilders/ASPNetBenchmarks.CommandBuilder.cs b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/CommandBuilders/ASPNetBenchmarks.CommandBuilder.cs index c13398e80f0..4828190381e 100644 --- a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/CommandBuilders/ASPNetBenchmarks.CommandBuilder.cs +++ b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/CommandBuilders/ASPNetBenchmarks.CommandBuilder.cs @@ -106,7 +106,7 @@ public static (string, string) Build(ASPNetBenchmarksConfiguration configuration // Get the log. // TODO: Specify the path. commandStringBuilder.Append(" --application.options.downloadOutput true "); - commandStringBuilder.Append($" --application.options.downloadOutput {Path.Combine(configuration.Output.Path, run.Key, $"{baseConfiguration.Key}_{run.Key}.output")} "); + commandStringBuilder.Append($" --application.options.downloadOutputOutput {Path.Combine(configuration.Output.Path, run.Key, $"{baseConfiguration.Key}_{run.Key}.output")} "); commandStringBuilder.Append(" --application.options.downloadBuildLog true "); commandStringBuilder.Append($" --application.options.downloadBuildLogOutput {Path.Combine(configuration.Output.Path, run.Key, $"{baseConfiguration.Key}_{run.Key}.buildLog")} "); From f80211b2fcda2cfe89b2d55be1708b7492860e32 Mon Sep 17 00:00:00 2001 From: mrsharm Date: Wed, 23 Aug 2023 14:12:35 -0700 Subject: [PATCH 04/26] Cosmetic improvement and an example of the new params --- .../Configurations/ASPNetBenchmarks/ASPNetBenchmarks.yaml | 2 ++ .../Commands/ASPNetBenchmarks/AspNetBenchmarksCommand.cs | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks.yaml b/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks.yaml index 7742453ec43..5f4f64cd5fd 100644 --- a/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks.yaml +++ b/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks.yaml @@ -3,6 +3,7 @@ runs: corerun: C:\CoreRuns\Empty\ environment_variables: COMPlus_GCServer: 1 + framework_version: net6.0 run: corerun: C:\CoreRuns\Empty\ environment_variables: @@ -12,6 +13,7 @@ environment: default_max_seconds: 300 benchmark_settings: benchmark_file: C:\InfraRuns\RunNew_All\Suites\ASPNETBenchmarks\ASPNetBenchmarks.csv + additional_arguments: --chart output: path: C:\InfraRuns\RunNew_All\ASPNetBenchmarks columns: diff --git a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksCommand.cs b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksCommand.cs index 20366c9eb6e..fabf40573b0 100644 --- a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksCommand.cs +++ b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksCommand.cs @@ -161,7 +161,7 @@ public static AspNetBenchmarkResults RunASPNetBenchmarks(ASPNetBenchmarksConfigu } } - AnsiConsole.Markup($"[red bold] Failed with the following errors:\n {Markup.Escape(error.ToString())} \n Check the log file for more information: {logfileOutput} [/]"); + AnsiConsole.Markup($"[red bold] Failed with the following errors:\n {Markup.Escape(error.ToString())} Check the log file for more information: {logfileOutput} \n[/]"); } File.WriteAllText(logfileOutput, "Output: \n" + outputDetails + "\n Errors: \n" + error.ToString()); From 6bac3083b882365ee0f516df40edb715af8f349a Mon Sep 17 00:00:00 2001 From: mrsharm Date: Wed, 23 Aug 2023 15:38:22 -0700 Subject: [PATCH 05/26] Improved messaging from the analysis from --- .../AspNetBenchmarksAnalyzeCommand.cs | 109 ++++++++++-------- 1 file changed, 59 insertions(+), 50 deletions(-) diff --git a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksAnalyzeCommand.cs b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksAnalyzeCommand.cs index 60ec8bf7ca5..4e9453cfffe 100644 --- a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksAnalyzeCommand.cs +++ b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksAnalyzeCommand.cs @@ -41,7 +41,17 @@ public override int Execute([NotNull] CommandContext context, [NotNull] AspNetBe configurationToCommand[line[0]] = line[1]; } - Dictionary> results = ExecuteAnalysis(configuration, configurationToCommand, new()); + Dictionary> result = ExecuteAnalysis(configuration, configurationToCommand, new()); + if (result.Count == 0) + { + AnsiConsole.MarkupLine($"[bold green] No report generated since there were no results to compare. [/]"); + } + + else + { + AnsiConsole.MarkupLine($"[bold green] Report generated at: {Path.Combine(configuration.Output.Path, "Results.md")} [/]"); + } + return 0; } @@ -51,6 +61,11 @@ public static Dictionary> ExecuteAnalysis(ASPNetBench Dictionary> benchmarkToRunToPaths = new(); bool singleRun = configuration.Runs.Count == 1; + // Don't generate a report in case of a single report. + if (singleRun) + { + return new(); + } // For each Run, grab the paths of each of the benchmarks. string outputPath = configuration.Output.Path; @@ -73,79 +88,73 @@ public static Dictionary> ExecuteAnalysis(ASPNetBench Dictionary> metricResults = new(); // Compute the compare functionality if there is a single run. - if (!singleRun) + foreach (var benchmark in benchmarkToRunToPaths) { - foreach (var benchmark in benchmarkToRunToPaths) + List paths = benchmark.Value; + using (Process crankCompareProcess = new()) { - List paths = benchmark.Value; - using (Process crankCompareProcess = new()) - { - crankCompareProcess.StartInfo.UseShellExecute = false; - crankCompareProcess.StartInfo.FileName = "crank"; - crankCompareProcess.StartInfo.Arguments = $"compare {string.Join(" ", paths)}"; - crankCompareProcess.StartInfo.RedirectStandardOutput = true; - crankCompareProcess.StartInfo.RedirectStandardError = true; - crankCompareProcess.StartInfo.CreateNoWindow = true; + crankCompareProcess.StartInfo.UseShellExecute = false; + crankCompareProcess.StartInfo.FileName = "crank"; + crankCompareProcess.StartInfo.Arguments = $"compare {string.Join(" ", paths)}"; + crankCompareProcess.StartInfo.RedirectStandardOutput = true; + crankCompareProcess.StartInfo.RedirectStandardError = true; + crankCompareProcess.StartInfo.CreateNoWindow = true; - // Grab the output and save it. - crankCompareProcess.Start(); + // Grab the output and save it. + crankCompareProcess.Start(); - string output = crankCompareProcess.StandardOutput.ReadToEnd(); - crankCompareProcess.WaitForExit((int)configuration.Environment.default_max_seconds * 1000); + string output = crankCompareProcess.StandardOutput.ReadToEnd(); + crankCompareProcess.WaitForExit((int)configuration.Environment.default_max_seconds * 1000); - if (crankCompareProcess.ExitCode == 0) + if (crankCompareProcess.ExitCode == 0) + { + if (!metricResults.TryGetValue(benchmark.Key, out var metrics )) { - if (!metricResults.TryGetValue(benchmark.Key, out var metrics )) - { - metrics = metricResults[benchmark.Key] = new(); - } - - metrics.AddRange(GetMetricResults(output, benchmark.Key)); + metrics = metricResults[benchmark.Key] = new(); } - benchmarkToComparisons[benchmark.Key] = output; + metrics.AddRange(GetMetricResults(output, benchmark.Key)); } + + benchmarkToComparisons[benchmark.Key] = output; } } using (StreamWriter sw = new StreamWriter(Path.Combine(configuration.Output.Path, "Results.md"))) { // Ignore the summary section in case there is only one run. - if (!singleRun) - { - sw.WriteLine("# Summary"); + sw.WriteLine("# Summary"); - var topLevelSummarySet = new HashSet(new List { "Working Set (MB)", "Private Memory (MB)", "Requests/sec", "Mean Latency (MSec)", "Latency 50th (MSec)", "Latency 75th (MSec)", "Latency 90th (MSec)", "Latency 99th (MSec)" }); - sw.WriteLine($"| | {string.Join("|", topLevelSummarySet)}"); - sw.WriteLine($"|--- | {string.Join( "", Enumerable.Repeat("---|", topLevelSummarySet.Count ))}"); + var topLevelSummarySet = new HashSet(new List { "Working Set (MB)", "Private Memory (MB)", "Requests/sec", "Mean Latency (MSec)", "Latency 50th (MSec)", "Latency 75th (MSec)", "Latency 90th (MSec)", "Latency 99th (MSec)" }); + sw.WriteLine($"| | {string.Join("|", topLevelSummarySet)}"); + sw.WriteLine($"|--- | {string.Join( "", Enumerable.Repeat("---|", topLevelSummarySet.Count ))}"); - foreach (var r in metricResults) - { - double workingSet = r.Value.FirstOrDefault(m => m.MetricName.Contains("Working Set (MB)") && m.MetricName.Contains("application"))?.DeltaPercent ?? double.NaN; - workingSet = Math.Round(workingSet, 2); - double privateMemory = r.Value.FirstOrDefault(m => m.MetricName.Contains("Private Memory (MB)") && m.MetricName.Contains("application"))?.DeltaPercent ?? double.NaN; - privateMemory = Math.Round(privateMemory, 2); + foreach (var r in metricResults) + { + double workingSet = r.Value.FirstOrDefault(m => m.MetricName.Contains("Working Set (MB)") && m.MetricName.Contains("application"))?.DeltaPercent ?? double.NaN; + workingSet = Math.Round(workingSet, 2); + double privateMemory = r.Value.FirstOrDefault(m => m.MetricName.Contains("Private Memory (MB)") && m.MetricName.Contains("application"))?.DeltaPercent ?? double.NaN; + privateMemory = Math.Round(privateMemory, 2); - double rps = r.Value.FirstOrDefault(m => m.MetricName == "load_Requests/sec")?.DeltaPercent ?? double.NaN; - rps = Math.Round(rps, 2); + double rps = r.Value.FirstOrDefault(m => m.MetricName == "load_Requests/sec")?.DeltaPercent ?? double.NaN; + rps = Math.Round(rps, 2); - double meanLatency = r.Value.FirstOrDefault(m => m.MetricName.Contains("load_Mean latency"))?.DeltaPercent ?? double.NaN; - meanLatency = Math.Round(meanLatency, 2); + double meanLatency = r.Value.FirstOrDefault(m => m.MetricName.Contains("load_Mean latency"))?.DeltaPercent ?? double.NaN; + meanLatency = Math.Round(meanLatency, 2); - double latency50 = r.Value.FirstOrDefault(m => m.MetricName == "load_Latency 50th (ms)")?.DeltaPercent ?? double.NaN; - latency50 = Math.Round(latency50, 2); + double latency50 = r.Value.FirstOrDefault(m => m.MetricName == "load_Latency 50th (ms)")?.DeltaPercent ?? double.NaN; + latency50 = Math.Round(latency50, 2); - double latency75 = r.Value.FirstOrDefault(m => m.MetricName == "load_Latency 75th (ms)")?.DeltaPercent ?? double.NaN; - latency75 = Math.Round(latency75, 2); + double latency75 = r.Value.FirstOrDefault(m => m.MetricName == "load_Latency 75th (ms)")?.DeltaPercent ?? double.NaN; + latency75 = Math.Round(latency75, 2); - double latency90 = r.Value.FirstOrDefault(m => m.MetricName == "load_Latency 90th (ms)")?.DeltaPercent ?? double.NaN; - latency90 = Math.Round(latency90, 2); + double latency90 = r.Value.FirstOrDefault(m => m.MetricName == "load_Latency 90th (ms)")?.DeltaPercent ?? double.NaN; + latency90 = Math.Round(latency90, 2); - double latency99 = r.Value.FirstOrDefault(m => m.MetricName == "load_Latency 99th (ms)")?.DeltaPercent ?? double.NaN; - latency99 = Math.Round(latency99, 2); + double latency99 = r.Value.FirstOrDefault(m => m.MetricName == "load_Latency 99th (ms)")?.DeltaPercent ?? double.NaN; + latency99 = Math.Round(latency99, 2); - sw.WriteLine($"{r.Key} | {workingSet}% | {privateMemory}% | {rps}% | {meanLatency}% | {latency50}% | {latency75}% | {latency90}% | {latency99}% |"); - } + sw.WriteLine($"{r.Key} | {workingSet}% | {privateMemory}% | {rps}% | {meanLatency}% | {latency50}% | {latency75}% | {latency90}% | {latency99}% |"); } sw.AddIncompleteTestsSection(executionDetails); From 53ea22c5c5e87c4126d9dffe45c962bbbc14842f Mon Sep 17 00:00:00 2001 From: mrsharm Date: Wed, 23 Aug 2023 15:45:45 -0700 Subject: [PATCH 06/26] The create suite command now should reference the entire folder rather than a single corerun.exe --- .../GC.Infrastructure/Commands/RunCommand/CreateSuiteCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/RunCommand/CreateSuiteCommand.cs b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/RunCommand/CreateSuiteCommand.cs index 0f534275228..c565469d805 100644 --- a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/RunCommand/CreateSuiteCommand.cs +++ b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/RunCommand/CreateSuiteCommand.cs @@ -119,7 +119,7 @@ internal static string CreateASPNetBenchmarkSuite(InputConfiguration inputConfig { configuration.Runs.Add(r.Key, new Core.Configurations.ASPNetBenchmarks.Run { - corerun = r.Value.Path, + corerun = Directory.GetParent(r.Value.Path).FullName, environment_variables = r.Value.environment_variables, }); } From 54a8b873922466c72ad8ae43a0807f1107cc3980 Mon Sep 17 00:00:00 2001 From: mrsharm Date: Wed, 23 Aug 2023 15:50:00 -0700 Subject: [PATCH 07/26] Fixed linting issues --- src/benchmarks/gc/GC.Infrastructure/docs/ASPNETBenchmarks.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/benchmarks/gc/GC.Infrastructure/docs/ASPNETBenchmarks.md b/src/benchmarks/gc/GC.Infrastructure/docs/ASPNETBenchmarks.md index 337336ac304..27ffb346487 100644 --- a/src/benchmarks/gc/GC.Infrastructure/docs/ASPNETBenchmarks.md +++ b/src/benchmarks/gc/GC.Infrastructure/docs/ASPNETBenchmarks.md @@ -6,9 +6,9 @@ There are four main types of errors while running ASP.NET Benchmarks using crank ### 1. Inability To Connect To The Server -The typical error message associated with this is of the following form: +The typical error message associated with this is of the following form: -``` +```cmd The specified endpoint url 'http://asp-citrine-win:5001' for 'application' is invalid or not responsive: "No such host is known. (asp-citrine-win:5001)" ``` @@ -26,5 +26,4 @@ Fix arguments by refering to [this](https://github.com/dotnet/crank/blob/main/sr The test failures could be as a result of either runtime failures or failures of running the benchmark on the managed side of things. For both of these issues examine the log file to identify the reasons. ### 4. Missing Artifacts - For the case of missing artifacts such as missing traces, examine the log file for the exception reasons. \ No newline at end of file From 73dbf9fe8b538a5af27c688a44b4493cffa2cc7a Mon Sep 17 00:00:00 2001 From: mrsharm Date: Wed, 23 Aug 2023 15:55:02 -0700 Subject: [PATCH 08/26] One more Lint hydra fix --- src/benchmarks/gc/GC.Infrastructure/docs/ASPNETBenchmarks.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/benchmarks/gc/GC.Infrastructure/docs/ASPNETBenchmarks.md b/src/benchmarks/gc/GC.Infrastructure/docs/ASPNETBenchmarks.md index 27ffb346487..6339726d763 100644 --- a/src/benchmarks/gc/GC.Infrastructure/docs/ASPNETBenchmarks.md +++ b/src/benchmarks/gc/GC.Infrastructure/docs/ASPNETBenchmarks.md @@ -26,4 +26,5 @@ Fix arguments by refering to [this](https://github.com/dotnet/crank/blob/main/sr The test failures could be as a result of either runtime failures or failures of running the benchmark on the managed side of things. For both of these issues examine the log file to identify the reasons. ### 4. Missing Artifacts -For the case of missing artifacts such as missing traces, examine the log file for the exception reasons. \ No newline at end of file + +For the case of missing artifacts such as missing traces, examine the log file for the exception reasons. From aa9ae69c0d6cdfb20f740ad0b0b6593144680af2 Mon Sep 17 00:00:00 2001 From: mrsharm Date: Wed, 23 Aug 2023 16:49:07 -0700 Subject: [PATCH 09/26] Fixed internal references in the markdown output --- .../Commands/ASPNetBenchmarks/AspNetBenchmarksAnalyzeCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksAnalyzeCommand.cs b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksAnalyzeCommand.cs index 4e9453cfffe..4f0fbd8b3a6 100644 --- a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksAnalyzeCommand.cs +++ b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksAnalyzeCommand.cs @@ -163,7 +163,7 @@ public static Dictionary> ExecuteAnalysis(ASPNetBench foreach (var benchmark in benchmarkToComparisons) { - sw.WriteLine($"- [{benchmark.Key}](##{benchmark.Key})"); + sw.WriteLine($"- [{benchmark.Key}](#{benchmark.Key.ToLower().Replace(" ", "-")})"); } sw.WriteLine(); From 8676f7abd2bd9f7db2960c2d10ee04f4891127ca Mon Sep 17 00:00:00 2001 From: mrsharm Date: Mon, 28 Aug 2023 13:40:01 -0700 Subject: [PATCH 10/26] Added example of how to use the new config --- .../Configurations/ASPNetBenchmarks/ASPNetBenchmarks.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks.yaml b/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks.yaml index 5f4f64cd5fd..bc9b7056d83 100644 --- a/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks.yaml +++ b/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks.yaml @@ -11,9 +11,10 @@ runs: environment: environment_variables: {} default_max_seconds: 300 + framework_version: net8.0 benchmark_settings: benchmark_file: C:\InfraRuns\RunNew_All\Suites\ASPNETBenchmarks\ASPNetBenchmarks.csv - additional_arguments: --chart + additional_arguments: --chart --chart-type hex output: path: C:\InfraRuns\RunNew_All\ASPNetBenchmarks columns: From 6dee50cd1ae1e39df7122a4e7fc8d2b83c654811 Mon Sep 17 00:00:00 2001 From: mrsharm Date: Tue, 29 Aug 2023 17:15:54 -0700 Subject: [PATCH 11/26] Addressed feedback and added contextually named log files if the variables are specified --- .../ASPNetBenchmarks.CommandBuilder.cs | 45 ++++++++++--------- .../AspNetBenchmarksAnalyzeCommand.cs | 1 - .../AspNetBenchmarksCommand.cs | 14 +++--- 3 files changed, 32 insertions(+), 28 deletions(-) diff --git a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/CommandBuilders/ASPNetBenchmarks.CommandBuilder.cs b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/CommandBuilders/ASPNetBenchmarks.CommandBuilder.cs index 4828190381e..1b9b6493208 100644 --- a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/CommandBuilders/ASPNetBenchmarks.CommandBuilder.cs +++ b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/CommandBuilders/ASPNetBenchmarks.CommandBuilder.cs @@ -6,13 +6,13 @@ namespace GC.Infrastructure.Core.CommandBuilders { public static class ASPNetBenchmarksCommandBuilder { - public static (string, string) Build(ASPNetBenchmarksConfiguration configuration, KeyValuePair run, KeyValuePair baseConfiguration, OS os) + public static (string, string) Build(ASPNetBenchmarksConfiguration configuration, KeyValuePair run, KeyValuePair benchmarkNameToCommand, OS os) { string processName = "crank"; StringBuilder commandStringBuilder = new(); // Load the base configuration. - commandStringBuilder.Append(baseConfiguration.Value); + commandStringBuilder.Append(benchmarkNameToCommand.Value); // Environment Variables. // Add the environment variables from the configuration. @@ -33,7 +33,20 @@ public static (string, string) Build(ASPNetBenchmarksConfiguration configuration foreach (var env in environmentVariables) { - commandStringBuilder.Append($" --application.environmentVariables {env.Key}={env.Value} "); + string variable = env.Value; + + // Check if the log file is specified, also add the fact that we want to retrieve the log file back. + // This log file should be named in concordance with the name of the run and the benchmark. + if (string.CompareOrdinal(env.Key, "DOTNET_GCLogFile") == 0 || + string.CompareOrdinal(env.Key, "COMPlus_GCLogFile") == 0) + { + string extension = Path.GetExtension(env.Value); + commandStringBuilder.Append( $" --application.options.downloadFiles \"*.*{extension.Replace(".", "")}\" " ); + string fileName = Path.GetFileNameWithoutExtension(env.Value); + commandStringBuilder.Append( $" --application.options.downloadFilesOutput \"{Path.Combine(configuration.Output.Path, run.Key, $"{benchmarkNameToCommand.Key}_GCLog")}\" " ); + } + + commandStringBuilder.Append($" --application.environmentVariables {env.Key}={variable} "); } // Trace Collection. @@ -69,7 +82,7 @@ public static (string, string) Build(ASPNetBenchmarksConfiguration configuration } // Add name of output. - commandStringBuilder.Append($" --application.options.traceOutput {Path.Combine(configuration.Output.Path, run.Key, (baseConfiguration.Key + "." + collectType)) + traceFileSuffix}"); + commandStringBuilder.Append($" --application.options.traceOutput {Path.Combine(configuration.Output.Path, run.Key, (benchmarkNameToCommand.Key + "." + collectType)) + traceFileSuffix}"); } // Add any additional arguments specified. @@ -78,18 +91,11 @@ public static (string, string) Build(ASPNetBenchmarksConfiguration configuration commandStringBuilder.Append($" {configuration.benchmark_settings.additional_arguments} "); } - // Add the Framework version. - string frameworkVersion = "net8.0"; - // If the framework version at the top level is explicitly stated, use it. - if (!string.IsNullOrEmpty(configuration.Environment.framework_version)) + string frameworkVersion = configuration.Environment.framework_version; + // Override the framework version if it's specified at the level of the run. + if (!string.IsNullOrEmpty(run.Value.framework_version)) { - frameworkVersion = configuration.Environment.framework_version; - - // If the framework version is set at the run level, use it. - if (!string.IsNullOrEmpty(run.Value.framework_version)) - { - frameworkVersion = run.Value.framework_version; - } + frameworkVersion = run.Value.framework_version; } commandStringBuilder.Append($" --application.framework {frameworkVersion} "); @@ -103,16 +109,15 @@ public static (string, string) Build(ASPNetBenchmarksConfiguration configuration } commandStringBuilder.Append($" --application.options.outputFiles {artifactsToUpload} "); - // Get the log. - // TODO: Specify the path. + // Get the logs. commandStringBuilder.Append(" --application.options.downloadOutput true "); - commandStringBuilder.Append($" --application.options.downloadOutputOutput {Path.Combine(configuration.Output.Path, run.Key, $"{baseConfiguration.Key}_{run.Key}.output")} "); + commandStringBuilder.Append($" --application.options.downloadOutputOutput {Path.Combine(configuration.Output.Path, run.Key, $"{benchmarkNameToCommand.Key}_{run.Key}.output.log")} "); commandStringBuilder.Append(" --application.options.downloadBuildLog true "); - commandStringBuilder.Append($" --application.options.downloadBuildLogOutput {Path.Combine(configuration.Output.Path, run.Key, $"{baseConfiguration.Key}_{run.Key}.buildLog")} "); + commandStringBuilder.Append($" --application.options.downloadBuildLogOutput {Path.Combine(configuration.Output.Path, run.Key, $"{benchmarkNameToCommand.Key}_{run.Key}.build.log")} "); - commandStringBuilder.Append($" --json {Path.Combine(configuration.Output.Path, run.Key, $"{baseConfiguration.Key}_{run.Key}.json")}"); + commandStringBuilder.Append($" --json {Path.Combine(configuration.Output.Path, run.Key, $"{benchmarkNameToCommand.Key}_{run.Key}.json")}"); return (processName, commandStringBuilder.ToString()); } } diff --git a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksAnalyzeCommand.cs b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksAnalyzeCommand.cs index 4f0fbd8b3a6..59caa5ad188 100644 --- a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksAnalyzeCommand.cs +++ b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksAnalyzeCommand.cs @@ -87,7 +87,6 @@ public static Dictionary> ExecuteAnalysis(ASPNetBench Dictionary benchmarkToComparisons = new(); Dictionary> metricResults = new(); - // Compute the compare functionality if there is a single run. foreach (var benchmark in benchmarkToRunToPaths) { List paths = benchmark.Value; diff --git a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksCommand.cs b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksCommand.cs index fabf40573b0..d49c80f387a 100644 --- a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksCommand.cs +++ b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksCommand.cs @@ -53,7 +53,7 @@ public static AspNetBenchmarkResults RunASPNetBenchmarks(ASPNetBenchmarksConfigu // Parse the CSV file for the information. string[] lines = File.ReadAllLines(configuration.benchmark_settings.benchmark_file); - Dictionary configurationToCommand = new(StringComparer.OrdinalIgnoreCase); + Dictionary benchmarkNameToCommand = new(StringComparer.OrdinalIgnoreCase); for (int lineIdx = 0; lineIdx < lines.Length; lineIdx++) { @@ -64,11 +64,11 @@ public static AspNetBenchmarkResults RunASPNetBenchmarks(ASPNetBenchmarksConfigu string[] line = lines[lineIdx].Split(',', StringSplitOptions.TrimEntries); Debug.Assert(line.Length == 2); - configurationToCommand[line[0]] = line[1]; + benchmarkNameToCommand[line[0]] = line[1]; } // For each benchmark, iterate over all specified runs. - foreach (var c in configurationToCommand) + foreach (var c in benchmarkNameToCommand) { foreach (var run in configuration.Runs) { @@ -139,11 +139,11 @@ public static AspNetBenchmarkResults RunASPNetBenchmarks(ASPNetBenchmarksConfigu } } - // For the case where the output file doesn't exist implies that was an issue connecting to the asp.net machines or error number 1. - // This case also applies for incorrect crank arguments or error number 2. - // Move the standard out to the standard error as the process failed. else { + // For the case where the output file doesn't exist implies that was an issue connecting to the asp.net machines or error number 1. + // This case also applies for incorrect crank arguments or error number 2. + // Move the standard out to the standard error as the process failed. error.AppendLine(outputDetails); } @@ -174,7 +174,7 @@ public static AspNetBenchmarkResults RunASPNetBenchmarks(ASPNetBenchmarksConfigu } } - Dictionary> results = AspNetBenchmarksAnalyzeCommand.ExecuteAnalysis(configuration, configurationToCommand, executionDetails); + Dictionary> results = AspNetBenchmarksAnalyzeCommand.ExecuteAnalysis(configuration, benchmarkNameToCommand, executionDetails); return new AspNetBenchmarkResults(executionDetails, results); } } From 509b4108f852223f497fbe2be212e79d7a4e6194 Mon Sep 17 00:00:00 2001 From: mrsharm Date: Thu, 31 Aug 2023 22:29:53 -0700 Subject: [PATCH 12/26] Added the name of the file and the log file extension --- .../CommandBuilders/ASPNetBenchmarks.CommandBuilder.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/CommandBuilders/ASPNetBenchmarks.CommandBuilder.cs b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/CommandBuilders/ASPNetBenchmarks.CommandBuilder.cs index 1b9b6493208..5c3b9305f50 100644 --- a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/CommandBuilders/ASPNetBenchmarks.CommandBuilder.cs +++ b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/CommandBuilders/ASPNetBenchmarks.CommandBuilder.cs @@ -40,8 +40,8 @@ public static (string, string) Build(ASPNetBenchmarksConfiguration configuration if (string.CompareOrdinal(env.Key, "DOTNET_GCLogFile") == 0 || string.CompareOrdinal(env.Key, "COMPlus_GCLogFile") == 0) { - string extension = Path.GetExtension(env.Value); - commandStringBuilder.Append( $" --application.options.downloadFiles \"*.*{extension.Replace(".", "")}\" " ); + string fileNameOfLog = Path.GetFileName(env.Value); + commandStringBuilder.Append( $" --application.options.downloadFiles \"*.*{fileNameOfLog}.log\" " ); string fileName = Path.GetFileNameWithoutExtension(env.Value); commandStringBuilder.Append( $" --application.options.downloadFilesOutput \"{Path.Combine(configuration.Output.Path, run.Key, $"{benchmarkNameToCommand.Key}_GCLog")}\" " ); } From 35b4351411248ed3d22e9aba4ba050b20485c9be Mon Sep 17 00:00:00 2001 From: mrsharm Date: Thu, 31 Aug 2023 22:46:48 -0700 Subject: [PATCH 13/26] Added the analysis notebook --- .../Notebooks/ASPNetBenchmarkAnalysis.ipynb | 1121 +++++++++++++++++ 1 file changed, 1121 insertions(+) create mode 100644 src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb diff --git a/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb b/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb new file mode 100644 index 00000000000..5b4cc4b0536 --- /dev/null +++ b/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb @@ -0,0 +1,1121 @@ +{ + "cells": [ + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# ASP.NET Benchmark Analysis \n", + "\n", + "This notebook highlights the steps associated with analyzing data from the ASP.NET benchmarks obtained using crank." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "dotnet_interactive": { + "language": "csharp" + }, + "polyglot_notebook": { + "kernelName": "csharp" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [ + { + "data": { + "text/html": [ + "

" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/plain": [ + "Loading extensions from `C:\\Users\\musharm\\.nuget\\packages\\xplot.plotly.interactive\\4.0.7\\interactive-extensions\\dotnet\\XPlot.Plotly.Interactive.dll`" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "Configuring PowerShell Kernel for XPlot.Plotly integration." + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "Installed support for XPlot.Plotly." + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/plain": [ + "Loading extensions from `C:\\Users\\musharm\\.nuget\\packages\\microsoft.data.analysis\\0.19.1\\interactive-extensions\\dotnet\\Microsoft.Data.Analysis.Interactive.dll`" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "#r \"nuget: Microsoft.Diagnostics.Tracing.TraceEvent, 3.0.1\"\n", + "#r \"nuget: YamlDotnet\"\n", + "#r \"nuget: XPlot.Plotly\"\n", + "#r \"nuget: XPlot.Plotly.Interactive\"\n", + "#r \"nuget: Microsoft.Data.Analysis, 0.19.1\"\n", + "#r \"nuget: Newtonsoft.Json\"\n", + "#r \"nuget: Microsoft.Playwright, 1.16.0\"\n", + "\n", + "using Etlx = Microsoft.Diagnostics.Tracing.Etlx;\n", + "using Microsoft.Data.Analysis;\n", + "using Microsoft.Diagnostics.Tracing.Analysis.GC;\n", + "using Microsoft.Diagnostics.Tracing.Analysis;\n", + "using Microsoft.Diagnostics.Tracing.Parsers.Clr;\n", + "using Microsoft.Diagnostics.Tracing;\n", + "using System.Diagnostics;\n", + "using XPlot.Plotly;\n", + "\n", + "using System.IO;\n", + "using Newtonsoft.Json;" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Building and Using The GC Analysis API" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "dotnet_interactive": { + "language": "pwsh" + }, + "polyglot_notebook": { + "kernelName": "pwsh" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "MSBuild version 17.8.0-preview-23367-03+0ff2a83e9 for .NET\n", + " Determining projects to restore...\n", + " All projects are up-to-date for restore.\n", + " GC.Analysis.API -> C:\\performance\\artifacts\\bin\\GC.Analysis.API\\Release\\net6.0\\GC.Analysis.API.dll\n", + "\n", + "Build succeeded.\n", + " 0 Warning(s)\n", + " 0 Error(s)\n", + "\n", + "Time Elapsed 00:00:01.20\n" + ] + } + ], + "source": [ + "dotnet build -c Release \"..\\GC.Analysis.API\"" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "dotnet_interactive": { + "language": "csharp" + }, + "polyglot_notebook": { + "kernelName": "csharp" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [], + "source": [ + "#r \"C:\\performance\\artifacts\\bin\\GC.Infrastructure\\Release\\net7.0\\GC.Analysis.API.dll\"\n", + "\n", + "using GC.Analysis.API;" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Data Acquisition\n", + "\n", + "The next few cells detail how to retrieve the data from a base path. The run name below is the name of the folder generated from running the ``aspnetbenchmarks`` command from the GC.Infrastructure API. " + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "dotnet_interactive": { + "language": "csharp" + }, + "polyglot_notebook": { + "kernelName": "csharp" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [], + "source": [ + "// The LoadInfo class consists of all the pertinent fields needed to represent both the result from a particular benchmark\n", + "// as well as the the comparison between two runs where the Data2 represents the GCProcessData of the comparand.\n", + "public sealed class LoadInfo\n", + "{\n", + " public double WorkingSetMB {get;set;} = double.NaN;\n", + " public double PrivateMemoryMB {get;set;} = double.NaN;\n", + " public double Latency50thMS {get; set;} = double.NaN;\n", + " public double Latency75thMS {get; set;} = double.NaN;\n", + " public double Latency90thMS {get; set;} = double.NaN;\n", + " public double Latency99thMS {get; set;} = double.NaN;\n", + " public double MeanLatencyMS {get; set;} = double.NaN;\n", + " public int ProcessId {get;set;}\n", + " public double RequestsPerMSec {get; set;} = double.NaN;\n", + " public string Run {get; set;}\n", + " public GCProcessData Data {get;set;}\n", + " public GCProcessData? Data2 {get;set;}\n", + " public string CommandLine {get;set;}\n", + " public int NumberOfHeapCountSwitches {get;set;} = 0;\n", + " public string Benchmark {get; set;}\n", + " public string Id {get; set;}\n", + " public double TotalSuspensionTimeMSec {get;set;} = double.NaN;\n", + " public double PercentPauseTimeInGC {get; set;} = double.NaN;\n", + " public double PercentTimeInGC {get; set;} = double.NaN;\n", + " public double MeanHeapSizeBeforeMB {get; set;} = double.NaN;\n", + " public double MaxHeapSizeMB {get; set;} = double.NaN;\n", + " public double TotalAllocationsMB {get;set;} = double.NaN;\n", + " public string TracePath {get; set;}\n", + " public string ProcessName {get;set;}\n", + "}" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "dotnet_interactive": { + "language": "csharp" + }, + "polyglot_notebook": { + "kernelName": "csharp" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [], + "source": [ + "// The DataManager is responsible for parsing all the data from ASP.NET results from a basepath.\n", + "public class DataManager \n", + "{\n", + " private readonly Dictionary> _benchmarkToRunData = new();\n", + " private readonly Dictionary> _runToBenchmarkData = new();\n", + " private readonly Dictionary _data; \n", + " private readonly string _basePath;\n", + "\n", + " public DataManager(string basePath)\n", + " {\n", + " _basePath = basePath;\n", + " _data = GetLoadInfoFromBasePath(basePath);\n", + " foreach (var d in _data)\n", + " {\n", + " if (!_benchmarkToRunData.TryGetValue(d.Value.Benchmark, out var runData))\n", + " {\n", + " _benchmarkToRunData[d.Value.Benchmark] = runData = new();\n", + " }\n", + " runData[d.Value.Run] = d.Value;\n", + "\n", + " if (!_runToBenchmarkData.TryGetValue(d.Value.Run, out var benchmarkData))\n", + " {\n", + " _runToBenchmarkData[d.Value.Run] = benchmarkData = new();\n", + " }\n", + "\n", + " benchmarkData[d.Value.Benchmark] = d.Value;\n", + " }\n", + " }\n", + "\n", + " public static double DeltaPercent (double baseline, double comparand) => (comparand - baseline) / baseline * 100;\n", + "\n", + " public LoadInfo GetComparison(LoadInfo baseline, LoadInfo comparand)\n", + " {\n", + " return new LoadInfo\n", + " {\n", + " WorkingSetMB = DeltaPercent(baseline.WorkingSetMB, comparand.WorkingSetMB),\n", + " PrivateMemoryMB = DeltaPercent(baseline.PrivateMemoryMB, comparand.PrivateMemoryMB),\n", + " Latency50thMS = DeltaPercent(baseline.Latency50thMS, comparand.Latency50thMS),\n", + " Latency75thMS = DeltaPercent(baseline.Latency75thMS, comparand.Latency75thMS),\n", + " Latency90thMS = DeltaPercent(baseline.Latency90thMS, comparand.Latency90thMS), \n", + " Latency99thMS = DeltaPercent(baseline.Latency99thMS, comparand.Latency99thMS), \n", + " MeanLatencyMS = DeltaPercent(baseline.MeanLatencyMS, comparand.MeanLatencyMS),\n", + " RequestsPerMSec = DeltaPercent(baseline.RequestsPerMSec, comparand.RequestsPerMSec),\n", + " Data = baseline.Data,\n", + " Data2 = comparand.Data,\n", + " Run = $\"{baseline.Run} vs. {comparand.Run}\",\n", + " Benchmark = baseline.Benchmark,\n", + " Id = $\"{baseline.Run} vs. {comparand.Run} for {baseline.Benchmark}\"\n", + " };\n", + " }\n", + "\n", + " public Dictionary? GetAllBenchmarksForRun(string run)\n", + " {\n", + " if (!_runToBenchmarkData.TryGetValue(run, out var benchmarksForRun))\n", + " {\n", + " Console.WriteLine($\"No benchmarks found for run: {run}\");\n", + " return null;\n", + " }\n", + "\n", + " return benchmarksForRun;\n", + " }\n", + "\n", + " public void SaveBenchmarkData(string outputPath = \"\")\n", + " {\n", + " if (string.IsNullOrEmpty(outputPath))\n", + " {\n", + " outputPath = _basePath;\n", + " }\n", + "\n", + " StringBuilder sb = new();\n", + " sb.AppendLine($\"Run,Benchmark,Working Set (MB), Private Memory (MB), Request/MSec, Mean Latency (MSec), Latency 50th Percentile MSec, Latency 75th Percentile MSec, Latency 90th Percentile MSec, Latency 99th Percentile MSec\");\n", + " foreach (var b in _data)\n", + " {\n", + " var val = b.Value; \n", + " sb.AppendLine($\"{val.Run},{val.Benchmark},{val.WorkingSetMB},{val.PrivateMemoryMB},{val.RequestsPerMSec},{val.MeanLatencyMS},{val.Latency50thMS},{val.Latency75thMS},{val.Latency90thMS},{val.Latency99thMS}\");\n", + " }\n", + "\n", + " File.WriteAllText(Path.Combine(outputPath, \"AllBenchmarks.csv\"), sb.ToString());\n", + " }\n", + "\n", + " public Dictionary? GetAllRunsForBenchmark(string benchmark)\n", + " {\n", + " if (!_benchmarkToRunData.TryGetValue(benchmark, out var runsForBenchmark))\n", + " {\n", + " Console.WriteLine($\"No runs found for benchmark: {benchmark}\");\n", + " return null;\n", + " }\n", + "\n", + " return runsForBenchmark;\n", + " }\n", + "\n", + " public LoadInfo? GetBenchmarkData(string benchmark, string run)\n", + " {\n", + " if (!_benchmarkToRunData.TryGetValue(benchmark, out var runData))\n", + " {\n", + " Console.WriteLine($\"Benchmark: {benchmark} not found!\");\n", + " return null;\n", + " }\n", + "\n", + " if (!runData.TryGetValue(run, out var loadInfo))\n", + " {\n", + " Console.WriteLine($\"Run: {run} not found!\");\n", + " return null;\n", + " }\n", + "\n", + " return loadInfo;\n", + " }\n", + "\n", + " public Dictionary Data => _data; \n", + "\n", + " private Dictionary GetLoadInfoFromBasePath(string basePath)\n", + " {\n", + " Dictionary flatLoadMap = new();\n", + " var files = Directory.GetFiles(basePath, \"*.log\", SearchOption.AllDirectories);\n", + "\n", + " foreach (var f in files)\n", + " {\n", + " if (f.Contains(\"buildLog\") || f.Contains(\"output\"))\n", + " {\n", + " continue;\n", + " }\n", + "\n", + " LoadInfo info = new();\n", + "\n", + " string[] lines = File.ReadAllLines(f);\n", + " int idxOfApplication = Int32.MaxValue;\n", + " int idxOfLoad = Int32.MaxValue;\n", + " int idx = 0;\n", + "\n", + " foreach (var line in lines)\n", + " {\n", + " string[] sp = line.Split(\"|\", StringSplitOptions.TrimEntries);\n", + " if (line.Contains(\"| application\"))\n", + " {\n", + " idxOfApplication = idx;\n", + " }\n", + "\n", + " else if (line.Contains(\"| load\"))\n", + " {\n", + " idxOfLoad = idx;\n", + " }\n", + "\n", + " else if (line.Contains(\"| Latency 50th\"))\n", + " {\n", + " info.Latency50thMS = double.Parse(sp[2]);\n", + " }\n", + "\n", + " else if (line.Contains(\"| Latency 75th\"))\n", + " {\n", + " info.Latency75thMS = double.Parse(sp[2]);\n", + " }\n", + "\n", + " else if (line.Contains(\"| Latency 90th\"))\n", + " {\n", + " info.Latency90thMS = double.Parse(sp[2]);\n", + " }\n", + "\n", + " else if (line.Contains(\"| Latency 99th\"))\n", + " {\n", + " info.Latency99thMS = double.Parse(sp[2]);\n", + " }\n", + "\n", + " else if (line.Contains(\"Requests/sec\"))\n", + " {\n", + " info.RequestsPerMSec = double.Parse(sp[2]) / 1000;\n", + " }\n", + "\n", + " else if (line.Contains(\"Mean latency\"))\n", + " {\n", + " info.MeanLatencyMS = double.Parse(sp[2]);\n", + " }\n", + "\n", + " else if (line.Contains(\"Private Memory\") && (idxOfApplication < idx && idx < idxOfLoad)) \n", + " {\n", + " info.PrivateMemoryMB = double.Parse(sp[2]);\n", + " }\n", + "\n", + " else if (line.Contains(\"Working Set\") && (idxOfApplication < idx && idx < idxOfLoad)) \n", + " {\n", + " info.WorkingSetMB = double.Parse(sp[2]);\n", + " }\n", + "\n", + " ++idx;\n", + " }\n", + "\n", + " string[] split = f.Replace(\".5\", \"5\").Split(\".\");\n", + " string run = split[1];\n", + " string benchmark = Path.GetFileName( split[0] ).Replace(\"_Windows\", \"\");\n", + "\n", + " string key = $\"{run} | {benchmark}\";\n", + " info.Benchmark = benchmark;\n", + " info.Run = run;\n", + " info.Id = key;\n", + "\n", + " flatLoadMap[key] = info;\n", + " }\n", + "\n", + " var traceFiles = Directory.GetFiles(basePath, \"*.etl.zip\", SearchOption.AllDirectories);\n", + "\n", + " HashSet pertinentProcesses = new HashSet\n", + " {\n", + " \"PlatformBenchmarks\",\n", + " \"Benchmarks\",\n", + " \"MapAction\",\n", + " \"TodosApi\",\n", + " \"BasicGrpc\",\n", + " \"BasicMinimalApi\",\n", + " };\n", + "\n", + " Parallel.ForEach(traceFiles, (t) => {\n", + " string[] sp = t.Split(\"\\\\\");\n", + " string benchmark = Path.GetFileNameWithoutExtension(sp[sp.Length - 1]).Replace(\"_Windows\", \"\").Replace(\".gc.etl\", \"\");\n", + " string name = sp[sp.Length - 2].Replace(\".5\", \"5\");\n", + " string key = $\"{name} | {benchmark}\";\n", + " Analyzer analyzer = AnalyzerManager.GetAnalyzer(t);\n", + " GCProcessData? data = null;\n", + "\n", + " foreach (var p in pertinentProcesses)\n", + " {\n", + " data = analyzer.GetProcessGCData(p).FirstOrDefault();\n", + " if (data != null)\n", + " {\n", + " break;\n", + " }\n", + " }\n", + "\n", + " if (data == null)\n", + " {\n", + " Console.WriteLine($\"The following key doesn't have the pertinent process {key} - {t}: {string.Join(\" , \", analyzer.TraceLog.Processes.Select(p => p.Name))}\");\n", + " }\n", + "\n", + " else\n", + " {\n", + " lock (flatLoadMap)\n", + " {\n", + " if (flatLoadMap.TryGetValue( key, out var f ))\n", + " {\n", + " f.MeanHeapSizeBeforeMB = data.Stats.MeanSizePeakMB;\n", + " f.MaxHeapSizeMB = data.Stats.MaxSizePeakMB;\n", + " f.PercentTimeInGC = (data.GCs.Sum(gc => gc.PauseDurationMSec - gc.SuspendDurationMSec) / (data.Stats.ProcessDuration) ) * 100;\n", + " f.TracePath = data.Parent.TraceLogPath;\n", + " f.TotalAllocationsMB = data.Stats.TotalAllocatedMB;\n", + " f.CommandLine = data.CommandLine;\n", + " f.PercentPauseTimeInGC = data.Stats.GetGCPauseTimePercentage();\n", + " f.ProcessId = data.ProcessID;\n", + " f.Data = data;\n", + " f.ProcessName = data.ProcessName;\n", + " f.TotalSuspensionTimeMSec = data.GCs.Sum(gc => gc.SuspendDurationMSec);\n", + "\n", + " for (int i = 0; i < data.GCs.Count - 1; i++)\n", + " {\n", + " if ( data.GCs[i].GlobalHeapHistory?.NumHeaps != data.GCs[i + 1].GlobalHeapHistory?.NumHeaps)\n", + " {\n", + " ++f.NumberOfHeapCountSwitches;\n", + " }\n", + " }\n", + " }\n", + "\n", + " else\n", + " {\n", + " //Console.WriteLine($\"{key} not found!!\");\n", + " }\n", + " }\n", + " }\n", + " });\n", + "\n", + " return flatLoadMap;\n", + " }\n", + "\n", + " public Dictionary GetBenchmarkToComparison(string baselineRun, string comparandRun)\n", + " {\n", + " Dictionary comparisons = new();\n", + "\n", + " Dictionary baselineData = new();\n", + " Dictionary comparandData = new();\n", + " HashSet allBenchmarks = new();\n", + "\n", + " foreach (var d in _data)\n", + " {\n", + " allBenchmarks.Add(d.Value.Benchmark);\n", + "\n", + " string run = d.Key.Split(\"|\", StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries)[0];\n", + "\n", + " if (string.CompareOrdinal(run, baselineRun) == 0 && !baselineData.TryGetValue(d.Key, out var baselineInfo))\n", + " {\n", + " baselineInfo = baselineData[d.Value.Benchmark] = d.Value;\n", + " }\n", + "\n", + " else if (string.CompareOrdinal(run, comparandRun) == 0 && !comparandData.TryGetValue(d.Key, out var comparandInfo))\n", + " {\n", + " comparandInfo = comparandData[d.Value.Benchmark] = d.Value;\n", + " }\n", + " }\n", + "\n", + " foreach (var benchmark in allBenchmarks)\n", + " {\n", + " if (!baselineData.TryGetValue(benchmark, out var baselineBenchmarkInfo))\n", + " {\n", + " Console.WriteLine($\"Benchmark: {benchmark} not found on the baseline: {baselineRun}\");\n", + " continue;\n", + " }\n", + "\n", + " if (!comparandData.TryGetValue(benchmark, out var comparandBenchmarkInfo))\n", + " {\n", + " Console.WriteLine($\"Benchmark: {benchmark} not found on the comparand: {comparandRun}\");\n", + " continue;\n", + " }\n", + "\n", + " LoadInfo comparison = GetComparison(baselineBenchmarkInfo, comparandBenchmarkInfo);\n", + " comparisons[benchmark] = comparison;\n", + " }\n", + " \n", + " return comparisons;\n", + " }\n", + "}" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "dotnet_interactive": { + "language": "csharp" + }, + "polyglot_notebook": { + "kernelName": "csharp" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [], + "source": [ + "string basePath = @\"Base Path To the ASP.NET Infra Run\";\n", + "var dataManager = new DataManager(basePath);" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Using the DataManager\n", + "\n", + "The following cells demonstrates how to make use of the ``DataManager``. " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "dotnet_interactive": { + "language": "csharp" + }, + "polyglot_notebook": { + "kernelName": "csharp" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [], + "source": [ + "string runName = \"run1\";\n", + "\n", + "Dictionary run = dataManager.GetAllBenchmarksForRun(runName);\n", + "dataManager.Data.Display();\n", + "List> runsWithGCData = dataManager.GetAllBenchmarksForRun(runName).Where(gc => gc.Value.Data != null);" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "dotnet_interactive": { + "language": "csharp" + }, + "polyglot_notebook": { + "kernelName": "csharp" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [], + "source": [ + "string benchmarkName = \"Name of the Benchmark\";\n", + "LoadInfo benchmarkData = dataManager.GetBenchmarkData(benchmark: benchmarkName, run: runName);\n", + "benchmarkData.Id" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "dotnet_interactive": { + "language": "csharp" + }, + "polyglot_notebook": { + "kernelName": "csharp" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [], + "source": [ + "Dictionary allRunsForBenchmark = dataManager.GetAllRunsForBenchmark(benchmark: benchmarkName);\n", + "allRunsForBenchmark.Keys" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Saving The Benchmark Results\n", + "\n", + "The following call will persist a flat list of all the results." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "dotnet_interactive": { + "language": "csharp" + }, + "polyglot_notebook": { + "kernelName": "csharp" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [], + "source": [ + "dataManager.SaveBenchmarkData()" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Build to Build Comparison and Volatility Analysis" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "dotnet_interactive": { + "language": "csharp" + }, + "polyglot_notebook": { + "kernelName": "csharp" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [ + { + "ename": "Error", + "evalue": "System.NullReferenceException: Object reference not set to an instance of an object.\r\n at Submission#11.<>d__0.MoveNext()\r\n--- End of stack trace from previous location ---\r\n at Microsoft.CodeAnalysis.Scripting.ScriptExecutionState.RunSubmissionsAsync[TResult](ImmutableArray`1 precedingExecutors, Func`2 currentExecutor, StrongBox`1 exceptionHolderOpt, Func`2 catchExceptionOpt, CancellationToken cancellationToken)", + "output_type": "error", + "traceback": [ + "System.NullReferenceException: Object reference not set to an instance of an object.\r\n", + " at Submission#11.<>d__0.MoveNext()\r\n", + "--- End of stack trace from previous location ---\r\n", + " at Microsoft.CodeAnalysis.Scripting.ScriptExecutionState.RunSubmissionsAsync[TResult](ImmutableArray`1 precedingExecutors, Func`2 currentExecutor, StrongBox`1 exceptionHolderOpt, Func`2 catchExceptionOpt, CancellationToken cancellationToken)" + ] + } + ], + "source": [ + "var run1_vs_run2 = dataManager.GetBenchmarkToComparison(\"run1\", \"run2\");" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "dotnet_interactive": { + "language": "csharp" + }, + "polyglot_notebook": { + "kernelName": "csharp" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [], + "source": [ + "static bool IsNotInvalidDouble(double val) => \n", + " !double.IsNaN(val) && \n", + " !double.IsInfinity(val) && \n", + " !double.IsPositiveInfinity(val) && \n", + " !double.IsNegativeInfinity(val);\n", + "\n", + "public class SummaryTable\n", + "{\n", + " public SummaryTable(Dictionary> comparisons)\n", + " {\n", + " Comparisons = comparisons;\n", + " }\n", + "\n", + " private string GenerateSummaryForComparison(string comparisonKey, Dictionary comparison)\n", + " {\n", + " double averageWorkingSet = comparison.Where(a => IsNotInvalidDouble(a.Value.WorkingSetMB)).Average(a => a.Value.WorkingSetMB);\n", + " double privateMemory = comparison.Where(a => IsNotInvalidDouble(a.Value.PrivateMemoryMB)).Average(a => a.Value.PrivateMemoryMB);\n", + " double throughput = comparison.Where(a => IsNotInvalidDouble(a.Value.RequestsPerMSec)).Average(a => a.Value.RequestsPerMSec);\n", + " double meanLatency = comparison.Where(a => IsNotInvalidDouble(a.Value.MeanLatencyMS)).Average(a => a.Value.MeanLatencyMS);\n", + "\n", + " double p50Latency = comparison.Where(a => IsNotInvalidDouble(a.Value.Latency50thMS)).Average(a => a.Value.Latency50thMS);\n", + " double p75Latency = comparison.Where(a => IsNotInvalidDouble(a.Value.Latency75thMS)).Average(a => a.Value.Latency75thMS);\n", + " double p90Latency = comparison.Where(a => IsNotInvalidDouble(a.Value.Latency90thMS)).Average(a => a.Value.Latency90thMS);\n", + " double p99Latency = comparison.Where(a => IsNotInvalidDouble(a.Value.Latency99thMS)).Average(a => a.Value.Latency99thMS);\n", + "\n", + " return $\"{comparisonKey},{averageWorkingSet},{privateMemory},{throughput},{meanLatency},{p50Latency},{p75Latency},{p90Latency},{p99Latency}\";\n", + " }\n", + "\n", + " public string GenerateSummaryForComparisons()\n", + " {\n", + " StringBuilder sb = new();\n", + " sb.AppendLine(\"Build to Build,Average Working Set (MB) %, Average Private Memory (MB) %, Average Request/MSec %, Average Mean Latency (MSec), Average P50 Latency (MSec) %, Average P75 Latency (MSec) %, Average P90 Latency (MSec) %, Average P99 Latency (MSec) %\");\n", + " foreach (var comparison in Comparisons)\n", + " {\n", + " sb.AppendLine(GenerateSummaryForComparison(comparison.Key, comparison.Value));\n", + " }\n", + "\n", + " return sb.ToString();\n", + " }\n", + "\n", + " private int GetCountOfRegressions(List selected, double thresholdPercentage, bool lessIsBetter = true)\n", + " {\n", + " // If throughput, less is worse => threshold <= -5%.\n", + " var comparison = selected.Where(d => IsNotInvalidDouble(d) && ( (lessIsBetter) ? (d >= thresholdPercentage) : (d <= -thresholdPercentage)));\n", + " return comparison.Count;\n", + " }\n", + "\n", + " private int GetCountOfAbsRegressions(List selected, double thresholdPercentage)\n", + " {\n", + " var comparison = selected.Where(d => IsNotInvalidDouble(d) && Math.Abs(d) >= thresholdPercentage);\n", + " return comparison.Count;\n", + " }\n", + "\n", + " // # of benchmarks with throughput regressed by >= 5% and 10%\n", + " private string GenerateRegressionSummary(string comparisonKey, Dictionary comparison)\n", + " {\n", + " List workingSet = comparison.Select(c => c.Value.WorkingSetMB);\n", + " int workingSetCountGT_5 = GetCountOfRegressions(workingSet, 5);\n", + " int workingSetCountGT_10 = GetCountOfRegressions(workingSet, 10);\n", + "\n", + " List privateMemory = comparison.Select(c => c.Value.PrivateMemoryMB);\n", + " int privateMemoryCountGT_5 = GetCountOfRegressions(privateMemory, 5);\n", + " int privateMemoryCountGT_10 = GetCountOfRegressions(privateMemory, 10);\n", + "\n", + " List throughput = comparison.Select(a => a.Value.RequestsPerMSec);\n", + " int throughputCountGT_5 = GetCountOfRegressions(throughput, 5, false);\n", + " int throughputCountGT_10 = GetCountOfRegressions(throughput, 10, false);\n", + "\n", + " List meanLatency = comparison.Select(a => a.Value.MeanLatencyMS);\n", + " int meanLatencyCountGT_5 = GetCountOfRegressions(meanLatency, 5);\n", + " int meanLatencyCountGT_10 = GetCountOfRegressions(meanLatency, 10);\n", + "\n", + " List p50Latency = comparison.Select(a => a.Value.Latency50thMS);\n", + " int p50LatencyCountGT_5 = GetCountOfRegressions(p50Latency, 5);\n", + " int p50LatencyCountGT_10 = GetCountOfRegressions(p50Latency, 10);\n", + "\n", + " List p75Latency = comparison.Select(a => a.Value.Latency75thMS);\n", + " int p75LatencyCountGT_5 = GetCountOfRegressions(p75Latency, 5);\n", + " int p75LatencyCountGT_10 = GetCountOfRegressions(p75Latency, 10);\n", + "\n", + " List p90Latency = comparison.Select(a => a.Value.Latency90thMS);\n", + " int p90LatencyCountGT_5 = GetCountOfRegressions(p90Latency, 5);\n", + " int p90LatencyCountGT_10 = GetCountOfRegressions(p90Latency, 10);\n", + " \n", + " List p99Latency = comparison.Select(a => a.Value.Latency99thMS);\n", + " int p99LatencyCountGT_5 = GetCountOfRegressions(p99Latency, 5);\n", + " int p99LatencyCountGT_10 = GetCountOfRegressions(p99Latency, 10);\n", + "\n", + " return $\"{comparisonKey},{workingSetCountGT_5},{workingSetCountGT_10},{privateMemoryCountGT_5},{privateMemoryCountGT_10},{throughputCountGT_5},{throughputCountGT_10},{meanLatencyCountGT_5},{meanLatencyCountGT_10},{p50LatencyCountGT_5},{p50LatencyCountGT_10},{p75LatencyCountGT_5},{p75LatencyCountGT_10},{p90LatencyCountGT_5},{p90LatencyCountGT_10},{p99LatencyCountGT_5},{p99LatencyCountGT_10}\";\n", + " }\n", + "\n", + " public string GenerateRegressionSummaryForComparisons()\n", + " {\n", + " StringBuilder sb = new();\n", + " sb.AppendLine(\"Build to Build,Reg. Count - Working Set (MB),Large Reg. Count - Working Set (MB),Reg. Count - Private Memory (MB),Large Reg. Count - Private Memory (MB),Reg. Count - Throughput, Large Reg. Count - Throughput,Reg. Count - Mean Latency,Large Reg. Count - Mean Latency,Reg. Count - P50 Latency, Large Reg. Count - P50 Latency, Reg. Count - P75 Latency, Large Reg. Count - P75 Latency,Reg. Count - P90 Latency, Large Reg. Count - P90 Latency,Reg. Count - P99 Latency, Large Reg. Count - P99 Latency\");\n", + " foreach (var comparison in Comparisons)\n", + " {\n", + " sb.AppendLine(GenerateRegressionSummary(comparison.Key, comparison.Value));\n", + " }\n", + "\n", + " return sb.ToString();\n", + " }\n", + "\n", + " public Dictionary GenerateRegressionAnalysisForComparison(string comparisonKey)\n", + " {\n", + " StringBuilder sb = new();\n", + " Dictionary csvData = new();\n", + " Dictionary comparison = Comparisons[comparisonKey];\n", + "\n", + " string header = \"Benchmark,WorkingSetMB,PrivateMemoryMB,RequestsPerMSec,MeanLatencyMS,Latency50thMS,Latency75thMS,Latency90thMS,Latency99thMS\";\n", + "\n", + " // Generate Memory Regressions.\n", + " StringBuilder memRegressions = new();\n", + " memRegressions.AppendLine(header);\n", + " foreach (var benchmark in comparison.Where(c => c.Value.WorkingSetMB >= 10 || c.Value.PrivateMemoryMB >= 10 ))\n", + " {\n", + " memRegressions.AppendLine($\"{benchmark.Key},{benchmark.Value.WorkingSetMB},{benchmark.Value.PrivateMemoryMB},{benchmark.Value.RequestsPerMSec},{benchmark.Value.MeanLatencyMS},{benchmark.Value.Latency50thMS},{benchmark.Value.Latency75thMS},{benchmark.Value.Latency90thMS},{benchmark.Value.Latency99thMS}\");\n", + " }\n", + " csvData[\"memory\"] = memRegressions.ToString();\n", + "\n", + " // Generate Throughput Regressions.\n", + " StringBuilder throughputRegressions = new();\n", + " throughputRegressions.AppendLine(header);\n", + " foreach (var benchmark in comparison.Where(c => c.Value.RequestsPerMSec <= -10))\n", + " {\n", + " throughputRegressions.AppendLine($\"{benchmark.Key},{benchmark.Value.WorkingSetMB},{benchmark.Value.PrivateMemoryMB},{benchmark.Value.RequestsPerMSec},{benchmark.Value.MeanLatencyMS},{benchmark.Value.Latency50thMS},{benchmark.Value.Latency75thMS},{benchmark.Value.Latency90thMS},{benchmark.Value.Latency99thMS}\");\n", + " }\n", + " csvData[\"throughput\"] = throughputRegressions.ToString();\n", + "\n", + " // Generate Latency Regressions.\n", + " StringBuilder latencyRegressions = new();\n", + " latencyRegressions.AppendLine(header);\n", + " foreach (var benchmark in comparison.Where(c => c.Value.MeanLatencyMS >= 10 || \n", + " c.Value.Latency50thMS >= 10 || \n", + " c.Value.Latency75thMS >= 10 || \n", + " c.Value.Latency90thMS >= 10 || \n", + " c.Value.Latency99thMS >= 10 ))\n", + " {\n", + " latencyRegressions.AppendLine($\"{benchmark.Key},{benchmark.Value.WorkingSetMB},{benchmark.Value.PrivateMemoryMB},{benchmark.Value.RequestsPerMSec},{benchmark.Value.MeanLatencyMS},{benchmark.Value.Latency50thMS},{benchmark.Value.Latency75thMS},{benchmark.Value.Latency90thMS},{benchmark.Value.Latency99thMS}\");\n", + " }\n", + " csvData[\"latency\"] = latencyRegressions.ToString();\n", + "\n", + " // All.\n", + " StringBuilder all = new();\n", + " all.AppendLine(header);\n", + " foreach (var benchmark in comparison)\n", + " {\n", + " all.AppendLine($\"{benchmark.Key},{benchmark.Value.WorkingSetMB},{benchmark.Value.PrivateMemoryMB},{benchmark.Value.RequestsPerMSec},{benchmark.Value.MeanLatencyMS},{benchmark.Value.Latency50thMS},{benchmark.Value.Latency75thMS},{benchmark.Value.Latency90thMS},{benchmark.Value.Latency99thMS}\");\n", + " }\n", + " csvData[\"all\"] = all.ToString();\n", + "\n", + " return csvData;\n", + " }\n", + "\n", + " public void SaveComparisons(string basePath)\n", + " {\n", + " // Add Summary for Comparisons.\n", + " string summaryOfComparisons = GenerateSummaryForComparisons();\n", + " File.WriteAllText(Path.Combine(basePath, \"SummaryOfComparisons.csv\"), summaryOfComparisons);\n", + "\n", + " // Add Regression Summary for Comparisons.\n", + " string regressionSummary = GenerateRegressionSummaryForComparisons();\n", + " File.WriteAllText(Path.Combine(basePath, \"RegressionSummary.csv\"), regressionSummary);\n", + "\n", + " // Add Large Regression Analysis for Comparison.\n", + " string perComparisonDataPath = Path.Combine(basePath, \"PerComparisonData\");\n", + " if (!Directory.Exists(perComparisonDataPath))\n", + " {\n", + " Directory.CreateDirectory(perComparisonDataPath);\n", + " }\n", + "\n", + " foreach (var comparison in Comparisons)\n", + " {\n", + " string comparisonPath = Path.Combine(perComparisonDataPath, comparison.Key);\n", + " Directory.CreateDirectory(comparisonPath);\n", + "\n", + " Dictionary regressionComparisons = GenerateRegressionAnalysisForComparison(comparison.Key);\n", + "\n", + " // Memory\n", + " File.WriteAllText(Path.Combine(comparisonPath, \"MemoryRegressions.csv\"), regressionComparisons[\"memory\"]);\n", + "\n", + " // Throughput\n", + " File.WriteAllText(Path.Combine(comparisonPath, \"ThroughputRegressions.csv\"), regressionComparisons[\"throughput\"]);\n", + "\n", + " // Latency\n", + " File.WriteAllText(Path.Combine(comparisonPath, \"LatencyRegressions.csv\"), regressionComparisons[\"latency\"]);\n", + "\n", + " // All\n", + " File.WriteAllText(Path.Combine(comparisonPath, \"All.csv\"), regressionComparisons[\"all\"]);\n", + " }\n", + " }\n", + "\n", + " public Dictionary> Comparisons { get; }\n", + "}" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "dotnet_interactive": { + "language": "csharp" + }, + "polyglot_notebook": { + "kernelName": "csharp" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [ + { + "ename": "Error", + "evalue": "System.NullReferenceException: Object reference not set to an instance of an object.\r\n at GC.Analysis.API.GoodLinq.Where[T](IEnumerable`1 data, Func`2 predicate) in C:\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs:line 107\r\n at Submission#12.SummaryTable.GenerateSummaryForComparison(String comparisonKey, Dictionary`2 comparison)\r\n at Submission#12.SummaryTable.GenerateSummaryForComparisons()\r\n at Submission#12.SummaryTable.SaveComparisons(String basePath)\r\n at Submission#13.<>d__0.MoveNext()\r\n--- End of stack trace from previous location ---\r\n at Microsoft.CodeAnalysis.Scripting.ScriptExecutionState.RunSubmissionsAsync[TResult](ImmutableArray`1 precedingExecutors, Func`2 currentExecutor, StrongBox`1 exceptionHolderOpt, Func`2 catchExceptionOpt, CancellationToken cancellationToken)", + "output_type": "error", + "traceback": [ + "System.NullReferenceException: Object reference not set to an instance of an object.\r\n", + " at GC.Analysis.API.GoodLinq.Where[T](IEnumerable`1 data, Func`2 predicate) in C:\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs:line 107\r\n", + " at Submission#12.SummaryTable.GenerateSummaryForComparison(String comparisonKey, Dictionary`2 comparison)\r\n", + " at Submission#12.SummaryTable.GenerateSummaryForComparisons()\r\n", + " at Submission#12.SummaryTable.SaveComparisons(String basePath)\r\n", + " at Submission#13.<>d__0.MoveNext()\r\n", + "--- End of stack trace from previous location ---\r\n", + " at Microsoft.CodeAnalysis.Scripting.ScriptExecutionState.RunSubmissionsAsync[TResult](ImmutableArray`1 precedingExecutors, Func`2 currentExecutor, StrongBox`1 exceptionHolderOpt, Func`2 catchExceptionOpt, CancellationToken cancellationToken)" + ] + } + ], + "source": [ + "Dictionary> comparisons = new()\n", + "{\n", + " { nameof(run1_vs_run2), run1_vs_run2 },\n", + "};\n", + "\n", + "SummaryTable summaryTable = new(comparisons);\n", + "summaryTable.SaveComparisons(basePath);" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Charting Helpers\n", + "\n", + "The following cells highlight how to chart certain properties of the LoadInfo class." + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "dotnet_interactive": { + "language": "csharp" + }, + "polyglot_notebook": { + "kernelName": "csharp" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [], + "source": [ + "void ChartProperty(LoadInfo baseline, LoadInfo comparand, string nameOfProperty)\n", + "{\n", + " GCProcessData baselineGC = baseline.Data;\n", + " GCProcessData comparandGC = comparand.Data;\n", + "\n", + " List<(string scatterName, List gcs)> gcData = \n", + " new()\n", + " {\n", + " { ( scatterName : $\"{nameOfProperty} for {baseline.Id}\" , gcs : baselineGC.GCs )},\n", + " { ( scatterName : $\"{nameOfProperty} for {comparand.Id}\" , gcs : comparandGC.GCs )}\n", + " };\n", + "\n", + " GCCharting.ChartGCData(gcData : gcData, \n", + " title : $\"{nameOfProperty} Comparison Between {baseline.Run} and {comparand.Run}\", \n", + " isXAxisRelative : false,\n", + " fieldName : nameOfProperty).Display();\n", + "\n", + "}\n", + "\n", + "void ChartProperty(LoadInfo comparison, string nameOfProperty)\n", + "{\n", + " GCProcessData baselineGC = comparison.Data;\n", + " GCProcessData comparandGC = comparison.Data2;\n", + "\n", + " List<(string scatterName, List gcs)> gcData = \n", + " new()\n", + " {\n", + " { ( scatterName : $\"{nameOfProperty} for Baseline\" , gcs : baselineGC.GCs )},\n", + " { ( scatterName : $\"{nameOfProperty} for Comparand\" , gcs : comparandGC.GCs )}\n", + " };\n", + "\n", + " GCCharting.ChartGCData(gcData : gcData, \n", + " title : $\"{nameOfProperty} Comparison\", \n", + " isXAxisRelative : false,\n", + " fieldName : nameOfProperty).Display();\n", + "\n", + "}" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "dotnet_interactive": { + "language": "csharp" + }, + "polyglot_notebook": { + "kernelName": "csharp" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [], + "source": [ + "var run1_Benchmark = dataManager.GetBenchmarkData(benchmark: benchmarkName, \"run1\");\n", + "var run2_Benchmark = dataManager.GetBenchmarkData(benchmark: benchmarkName, \"run2\");\n", + "\n", + "// Chart the PauseDurationMSec for the run1 vs. run2.\n", + "ChartProperty(baseline: run1_Benchmark, comparand: run2_Benchmark, nameof(TraceGC.PauseDurationMSec))" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Debugging" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "dotnet_interactive": { + "language": "csharp" + }, + "polyglot_notebook": { + "kernelName": "csharp" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [], + "source": [ + "System.Diagnostics.Process.GetCurrentProcess().Id" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "dotnet_interactive": { + "language": "csharp" + }, + "polyglot_notebook": { + "kernelName": "csharp" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [], + "source": [ + "#!about" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".NET (C#)", + "language": "C#", + "name": ".net-csharp" + }, + "language_info": { + "name": "python" + }, + "orig_nbformat": 4, + "polyglot_notebook": { + "kernelInfo": { + "defaultKernelName": "csharp", + "items": [ + { + "aliases": [], + "name": "csharp" + } + ] + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From d4f29d89c2cfffdb52866fb88f7aa81b4c00a0e4 Mon Sep 17 00:00:00 2001 From: mrsharm Date: Tue, 5 Sep 2023 12:35:18 -0700 Subject: [PATCH 14/26] Adjusted the csv files to be without spaces and modified the Linux and Generic runs --- .../{ASPNetBenchmarks - All.csv => ASPNetBenchmarks-All.csv} | 0 ...SPNetBenchmarks - Linux.csv => ASPNetBenchmarks-Linux.csv} | 3 --- .../Configurations/ASPNetBenchmarks/ASPNetBenchmarks.csv | 4 ++-- 3 files changed, 2 insertions(+), 5 deletions(-) rename src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/{ASPNetBenchmarks - All.csv => ASPNetBenchmarks-All.csv} (100%) rename src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/{ASPNetBenchmarks - Linux.csv => ASPNetBenchmarks-Linux.csv} (63%) diff --git a/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks - All.csv b/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks-All.csv similarity index 100% rename from src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks - All.csv rename to src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks-All.csv diff --git a/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks - Linux.csv b/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks-Linux.csv similarity index 63% rename from src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks - Linux.csv rename to src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks-Linux.csv index a00c63309e2..769ec037921 100644 --- a/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks - Linux.csv +++ b/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks-Linux.csv @@ -1,9 +1,6 @@ Legend,Base CommandLine -FortunesEf_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/database.benchmarks.yml --scenario fortunes_ef --application.options.collectCounters true --property os=windows --property arch=x64 --profile aspnet-citrine-win -JsonMin_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/json.benchmarks.yml --scenario mapaction --application.framework net8.0 --application.options.collectCounters true --property os=windows --property arch=x64 --profile aspnet-citrine-win FortunesEf_Linux, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/database.benchmarks.yml --scenario fortunes_ef --application.framework net8.0 --application.options.collectCounters true --profile aspnet-citrine-lin --property os=linux --property arch=x64 JsonMin_Linux, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/json.benchmarks.yml --scenario mapaction --application.framework net8.0 --application.options.collectCounters true --profile aspnet-citrine-lin --property os=linux --property arch=x64 FortunesEf_Linux, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/database.benchmarks.yml --scenario fortunes_ef --application.framework net8.0 --application.options.collectCounters true --profile aspnet-citrine-lin --property os=linux --property arch=x64 JsonMin_Linux, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/json.benchmarks.yml --scenario mapaction --application.framework net8.0 --application.options.collectCounters true --profile aspnet-citrine-lin --property os=linux --property arch=x64 -Stage1Grpc_Windows, crank --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario basicgrpcvanilla --profile intel-win-app --profile intel-lin-load --application.options.collectCounters true Stage1Grpc_Linux, crank --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario basicgrpcvanilla --profile intel-load2-app --profile amd-lin2-load --profile amd-lin2-db --application.options.collectCounters true \ No newline at end of file diff --git a/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks.csv b/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks.csv index 4e919b04cf7..1024e3d1f73 100644 --- a/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks.csv +++ b/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks.csv @@ -1,3 +1,3 @@ Legend,Base CommandLine -Stage1Grpc_Linux, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario basicgrpcvanilla --profile intel-load2-app --profile amd-lin2-load --profile amd-lin2-db --application.options.collectCounters true -JsonCrossgen2_Windows," --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/json.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/azure.profile.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario json --profile intel-win-app --profile intel-load2-load --application.buildArguments ""/p:PublishReadyToRun=true /p:PublishReadyToRunUseCrossgen2=true"" --application.options.requiredOperatingSystem windows --application.collectDependencies true --application.options.collectCounters true " \ No newline at end of file +JsonMvc_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/json.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/azure.profile.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario mvc --profile intel-win-app --profile intel-load2-load --application.collectDependencies true --application.options.collectCounters true +FortunesEf_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/database.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/azure.profile.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario fortunes_ef --profile intel-win-app --profile intel-load-load --profile intel-db-db --application.options.collectCounters true --application.collectDependencies true \ No newline at end of file From fbf44c4d836b9bcea26e8909636b45687ed05566 Mon Sep 17 00:00:00 2001 From: mrsharm Date: Tue, 5 Sep 2023 12:52:04 -0700 Subject: [PATCH 15/26] Updated README to reflect changes --- src/benchmarks/gc/GC.Infrastructure/README.md | 38 ++++++++++++------- 1 file changed, 24 insertions(+), 14 deletions(-) diff --git a/src/benchmarks/gc/GC.Infrastructure/README.md b/src/benchmarks/gc/GC.Infrastructure/README.md index a84631d165e..76fcd195469 100644 --- a/src/benchmarks/gc/GC.Infrastructure/README.md +++ b/src/benchmarks/gc/GC.Infrastructure/README.md @@ -144,41 +144,51 @@ The path to this file can be passed in as an optional argument for the ``microbe ##### ASP.NET Benchmarks -To run the infrastructure on a specific set of ASP.NET Benchmarks such as the suite comprising of The Json Min, Fortunes ETF and the Stage1gRPC run the following: +To run the infrastructure on a specific set of ASP.NET Benchmarks, do the following: 1. ``cd C:\performance\artifacts\bin\GC.Infrastructure\Release\net7.0\``. -2. ``.\GC.Infrastructure.exe aspnetbenchmarks --configuration C:\GC.Analysis.API\Configurations\ASPNetBenchmarks\ASPNetBenchmarks.yaml``. +2. ``.\GC.Infrastructure.exe aspnetbenchmarks --configuration C:\performance\src\benchmarks\gc\GC.Infrastructure\Configurations\ASPNetBenchmarks\ASPNetBenchmarks.csv``. More details about running and troubleshooting ASP.NET benchmarks can be found [here](./docs/ASPNETBenchmarks.md). -###### Uploading Only A Subset of the Binaries +###### Uploading Your Own Binaries -The ASP.NET benchmarks can be run without any of the users changes however, if the user wants to upload modified binaries with their changes, it is advisable to only upload those as long as they are compatible with the version of .NET runtime you wish to test against. Currently, the default framework to run these tests is net8.0. +The ASP.NET benchmarks can be run without any of the users changes however, if the user wants to upload modified binaries with their changes, it is advisable to only upload those as long as they are compatible with the version of .NET runtime you wish to test against. The infrastructure allows you to either upload a single binary or a directory with one or more binaries. -This can be accomplished in 2 steps: +This can be accomplished by specifying either a file or a directory as the corerun path of a particular run: -1. Copy over the binaries you want to change to a new empty folder. -2. Set the run's corerun path in the configuration to that of a folder with just the copied over binaries. +As an example, if I were to only update ``gc.cpp`` and build a standalone ``clrgc.dll``, specifically set the ``corerun`` field of the said run to the path of the ``clrgc.dll``. +NOTE: the environment variable ``COMPlus_GCName`` must be set in this case: -As an example, if I were to only update ``gc.cpp`` and build a standalone ``clrgc.dll``, I would copy the binary to a folder such as the following, update the ``runs`` section of the configuration and point to the folder containing the binary; NOTE: the environment variable ``COMPlus_GCName`` must be set in this case: - -1. Copy the clrgc.dll to a new and empty folder. +1. Assume your ``clrgc.dll`` is placed in ``C:\ASPNETUpload``: ```powershell C:\ASPNETUPLOAD |-----> clrgc.dll ``` -2. Adjust the corerun to point to the new folder: +2. Adjust the corerun to point to the path of clrgc.dll: ```yaml runs: run: - corerun: C:\ASPNetUpload\ # This was updated. + corerun: C:\ASPNetUpload\clrgc.dll environment_variables: COMPlus_GCName: clrgc.dll # This environment variable was set. ``` +NOTE: For this case, ensure the environment variable ``COMPlus_GCName`` or ``DOTNET_GCName`` is set to clrgc.dll. + +On the other hand, if you want upload the entire directory, say ``C:\ASPNETUpload2``, simply set the path to the directory in the corerun of a corerun: + +```yaml +runs: + run: + corerun: C:\ASPNetUpload2 + environment_variables: + COMPlus_GCName: clrgc.dll +``` + ###### Updating Which Benchmarks to Run The file that dictates which ASP.NET benchmarks to run is a CSV file and can be configured based on what test you need to run; an example of this file can be found [here](./Configurations/ASPNetBenchmarks/ASPNetBenchmarks.csv). @@ -187,7 +197,7 @@ You can update this file by changing the following field: ```yaml benchmark_settings: - benchmark_file: C:\InfraRuns\RunNew_All\Suites\ASPNETBenchmarks\ASPNetBenchmarks.csv # Change this. + benchmark_file: C:\InfraRuns\RunNew_All\Suites\ASPNETBenchmarks\ASPNetBenchmarks.csv ``` The format of this file is: @@ -204,7 +214,7 @@ It's worth noting that if you have specified Linux based binaries in the corerun ###### How To Add New Benchmarks 1. If you are collecting traces, make sure to include Linux (_Linux) or Windows (_Windows) suffix in the Legend column because we run PerfView to collect traces for Windows and dotnet-trace for `gc` trace; currently not working for other types of traces on Linux. -2. Find the base commandline for the benchmark to run by choosing the appropriate test and configuration from the [ASP.NET Dashboard](https://msit.powerbi.com/groups/me/reports/10265790-7e2e-41d3-9388-86ab72be3fe9/ReportSection30725cd056a647733762?experience=power-bi) +2. Find the base command line for the benchmark to run by choosing the appropriate test and configuration from the [ASP.NET Dashboard](https://msit.powerbi.com/groups/me/reports/10265790-7e2e-41d3-9388-86ab72be3fe9/ReportSection30725cd056a647733762?experience=power-bi) 3. Copy over the command line from the table to the Base CommandLine column after: 1. Remove the ``crank`` prefix from the command line. 2. Remove the ``--application.aspNetCoreVersion``, ``--application.runtimeVersion`` and ``--application.sdkVersion`` command args from the command line that you paste in the CSV as the versions are set by the infrastructure itself. From 17aec7dfc27d31d5bcaf2624132daa3744c09b87 Mon Sep 17 00:00:00 2001 From: mrsharm Date: Tue, 5 Sep 2023 13:22:08 -0700 Subject: [PATCH 16/26] Updated documentation --- .../docs/ASPNETBenchmarks.md | 23 +++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/src/benchmarks/gc/GC.Infrastructure/docs/ASPNETBenchmarks.md b/src/benchmarks/gc/GC.Infrastructure/docs/ASPNETBenchmarks.md index 6339726d763..d47c9543f9e 100644 --- a/src/benchmarks/gc/GC.Infrastructure/docs/ASPNETBenchmarks.md +++ b/src/benchmarks/gc/GC.Infrastructure/docs/ASPNETBenchmarks.md @@ -19,11 +19,30 @@ Additionally, the reason for the error could be because the associated machine i ### 2. Incorrect Crank Arguments -Fix arguments by refering to [this](https://github.com/dotnet/crank/blob/main/src/Microsoft.Crank.Controller/README.md) document. If you are still experiencing issues even though you have checked that the crank commands are correct, ensure that you have the latest version of crank. +Fix arguments by referring to [this](https://github.com/dotnet/crank/blob/main/src/Microsoft.Crank.Controller/README.md) document. If you are still experiencing issues even though you have checked that the crank commands are correct, ensure that you have the latest version of crank. ### 3. Test Failures -The test failures could be as a result of either runtime failures or failures of running the benchmark on the managed side of things. For both of these issues examine the log file to identify the reasons. +The test failures could be one of the following: + +#### 1. Build Failures + +To confirm this is the case, check the ``*build.log`` file associated with the run. The resolution here is to check with the test owners. + +#### 2. Runtime Test Failures + +These will show up in the following form: + +```psh +[STDERR] GC initialization failed with error 0x8007007E +[STDERR] Failed to create CoreCLR, HRESULT: 0x8007007E +``` + +This issue specifically indicates a version mismatch between the uploaded binaries and the test binaries. If you are connected to CorpNet, ``errors/`` will shed light on the meaning of errors. + +#### 3. Test Failures from the Managed Side of Things + +To get more details, check the ``*output.log`` file associated with the run. The resolution is usually to check if the framework version you are trying to run matches with the run and if that doesn't turn out to be the case, reach out to the test owners. ### 4. Missing Artifacts From 9816c4d5050e64dc5de8f0a09cd44946c1399191 Mon Sep 17 00:00:00 2001 From: mrsharm Date: Tue, 5 Sep 2023 13:33:25 -0700 Subject: [PATCH 17/26] Fixed md liniting issues --- src/benchmarks/gc/GC.Infrastructure/README.md | 4 ++-- src/benchmarks/gc/GC.Infrastructure/docs/ASPNETBenchmarks.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/benchmarks/gc/GC.Infrastructure/README.md b/src/benchmarks/gc/GC.Infrastructure/README.md index 76fcd195469..7de664d1d1e 100644 --- a/src/benchmarks/gc/GC.Infrastructure/README.md +++ b/src/benchmarks/gc/GC.Infrastructure/README.md @@ -151,13 +151,13 @@ To run the infrastructure on a specific set of ASP.NET Benchmarks, do the follow More details about running and troubleshooting ASP.NET benchmarks can be found [here](./docs/ASPNETBenchmarks.md). -###### Uploading Your Own Binaries +###### Uploading Your Own Binaries The ASP.NET benchmarks can be run without any of the users changes however, if the user wants to upload modified binaries with their changes, it is advisable to only upload those as long as they are compatible with the version of .NET runtime you wish to test against. The infrastructure allows you to either upload a single binary or a directory with one or more binaries. This can be accomplished by specifying either a file or a directory as the corerun path of a particular run: -As an example, if I were to only update ``gc.cpp`` and build a standalone ``clrgc.dll``, specifically set the ``corerun`` field of the said run to the path of the ``clrgc.dll``. +As an example, if I were to only update ``gc.cpp`` and build a standalone ``clrgc.dll``, specifically set the ``corerun`` field of the said run to the path of the ``clrgc.dll``. NOTE: the environment variable ``COMPlus_GCName`` must be set in this case: 1. Assume your ``clrgc.dll`` is placed in ``C:\ASPNETUpload``: diff --git a/src/benchmarks/gc/GC.Infrastructure/docs/ASPNETBenchmarks.md b/src/benchmarks/gc/GC.Infrastructure/docs/ASPNETBenchmarks.md index d47c9543f9e..14033f2716b 100644 --- a/src/benchmarks/gc/GC.Infrastructure/docs/ASPNETBenchmarks.md +++ b/src/benchmarks/gc/GC.Infrastructure/docs/ASPNETBenchmarks.md @@ -31,7 +31,7 @@ To confirm this is the case, check the ``*build.log`` file associated with the r #### 2. Runtime Test Failures -These will show up in the following form: +These will show up in the following form: ```psh [STDERR] GC initialization failed with error 0x8007007E From 8e960ed806a397f36be38a919069404388552221 Mon Sep 17 00:00:00 2001 From: mrsharm Date: Tue, 5 Sep 2023 16:08:00 -0700 Subject: [PATCH 18/26] Fixed up the notebook to work for both windows and linux --- .../Notebooks/ASPNetBenchmarkAnalysis.ipynb | 208 +++++++----------- 1 file changed, 84 insertions(+), 124 deletions(-) diff --git a/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb b/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb index 5b4cc4b0536..f6c56288611 100644 --- a/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb +++ b/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb @@ -12,7 +12,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": null, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -24,53 +24,7 @@ "languageId": "polyglot-notebook" } }, - "outputs": [ - { - "data": { - "text/html": [ - "
Installed Packages
  • Microsoft.Data.Analysis, 0.19.1
  • Microsoft.Diagnostics.Tracing.TraceEvent, 3.0.1
  • Microsoft.Playwright, 1.16.0
  • Newtonsoft.Json, 13.0.3
  • XPlot.Plotly, 4.0.6
  • XPlot.Plotly.Interactive, 4.0.7
  • YamlDotnet, 13.3.1
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/plain": [ - "Loading extensions from `C:\\Users\\musharm\\.nuget\\packages\\xplot.plotly.interactive\\4.0.7\\interactive-extensions\\dotnet\\XPlot.Plotly.Interactive.dll`" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/markdown": [ - "Configuring PowerShell Kernel for XPlot.Plotly integration." - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/markdown": [ - "Installed support for XPlot.Plotly." - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/plain": [ - "Loading extensions from `C:\\Users\\musharm\\.nuget\\packages\\microsoft.data.analysis\\0.19.1\\interactive-extensions\\dotnet\\Microsoft.Data.Analysis.Interactive.dll`" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "#r \"nuget: Microsoft.Diagnostics.Tracing.TraceEvent, 3.0.1\"\n", "#r \"nuget: YamlDotnet\"\n", @@ -102,7 +56,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": null, "metadata": { "dotnet_interactive": { "language": "pwsh" @@ -114,31 +68,14 @@ "languageId": "polyglot-notebook" } }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "MSBuild version 17.8.0-preview-23367-03+0ff2a83e9 for .NET\n", - " Determining projects to restore...\n", - " All projects are up-to-date for restore.\n", - " GC.Analysis.API -> C:\\performance\\artifacts\\bin\\GC.Analysis.API\\Release\\net6.0\\GC.Analysis.API.dll\n", - "\n", - "Build succeeded.\n", - " 0 Warning(s)\n", - " 0 Error(s)\n", - "\n", - "Time Elapsed 00:00:01.20\n" - ] - } - ], + "outputs": [], "source": [ - "dotnet build -c Release \"..\\GC.Analysis.API\"" + "dotnet build -c Debug \"..\\GC.Analysis.API\"" ] }, { "cell_type": "code", - "execution_count": 3, + "execution_count": null, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -152,7 +89,7 @@ }, "outputs": [], "source": [ - "#r \"C:\\performance\\artifacts\\bin\\GC.Infrastructure\\Release\\net7.0\\GC.Analysis.API.dll\"\n", + "#r \"C:\\performance\\artifacts\\bin\\GC.Infrastructure\\Debug\\net7.0\\GC.Analysis.API.dll\"\n", "\n", "using GC.Analysis.API;" ] @@ -169,7 +106,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": null, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -216,7 +153,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": null, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -347,7 +284,7 @@ "\n", " foreach (var f in files)\n", " {\n", - " if (f.Contains(\"buildLog\") || f.Contains(\"output\"))\n", + " if (f.Contains(\"build.log\") || f.Contains(\"output.log\") || f.Contains(\"_GCLog\"))\n", " {\n", " continue;\n", " }\n", @@ -417,7 +354,7 @@ "\n", " string[] split = f.Replace(\".5\", \"5\").Split(\".\");\n", " string run = split[1];\n", - " string benchmark = Path.GetFileName( split[0] ).Replace(\"_Windows\", \"\");\n", + " string benchmark = Path.GetFileName( split[0] ).Replace(\"_Windows\", \"\").Replace(\"_Linux\", \"\").Replace(\".gc\", \"\").Replace(\".nettrace\", \"\");\n", "\n", " string key = $\"{run} | {benchmark}\";\n", " info.Benchmark = benchmark;\n", @@ -427,7 +364,9 @@ " flatLoadMap[key] = info;\n", " }\n", "\n", - " var traceFiles = Directory.GetFiles(basePath, \"*.etl.zip\", SearchOption.AllDirectories);\n", + " var traceFiles = Directory.GetFiles(basePath, \"*.etl.zip\", SearchOption.AllDirectories).ToList();\n", + " var nettraceFiles = Directory.GetFiles(basePath, \"*.nettrace\", SearchOption.AllDirectories);\n", + " traceFiles.AddRange(nettraceFiles);\n", "\n", " HashSet pertinentProcesses = new HashSet\n", " {\n", @@ -441,18 +380,27 @@ "\n", " Parallel.ForEach(traceFiles, (t) => {\n", " string[] sp = t.Split(\"\\\\\");\n", - " string benchmark = Path.GetFileNameWithoutExtension(sp[sp.Length - 1]).Replace(\"_Windows\", \"\").Replace(\".gc.etl\", \"\");\n", + " string benchmark = Path.GetFileNameWithoutExtension(sp[sp.Length - 1]).Replace(\"_Windows\", \"\").Replace(\".gc.etl\", \"\").Replace(\"_Linux\", \"\").Replace(\".nettrace\", \"\").Replace(\".gc\", \"\");\n", " string name = sp[sp.Length - 2].Replace(\".5\", \"5\");\n", " string key = $\"{name} | {benchmark}\";\n", + "\n", " Analyzer analyzer = AnalyzerManager.GetAnalyzer(t);\n", " GCProcessData? data = null;\n", "\n", - " foreach (var p in pertinentProcesses)\n", + " if (t.Contains(\".nettrace\"))\n", " {\n", - " data = analyzer.GetProcessGCData(p).FirstOrDefault();\n", - " if (data != null)\n", + " data = analyzer.AllGCProcessData.First().Value.First();\n", + " }\n", + "\n", + " else\n", + " {\n", + " foreach (var p in pertinentProcesses)\n", " {\n", - " break;\n", + " data = analyzer.GetProcessGCData(p).FirstOrDefault();\n", + " if (data != null)\n", + " {\n", + " break;\n", + " }\n", " }\n", " }\n", "\n", @@ -465,7 +413,7 @@ " {\n", " lock (flatLoadMap)\n", " {\n", - " if (flatLoadMap.TryGetValue( key, out var f ))\n", + " if (flatLoadMap.TryGetValue(key, out var f))\n", " {\n", " f.MeanHeapSizeBeforeMB = data.Stats.MeanSizePeakMB;\n", " f.MaxHeapSizeMB = data.Stats.MaxSizePeakMB;\n", @@ -486,11 +434,12 @@ " ++f.NumberOfHeapCountSwitches;\n", " }\n", " }\n", + "\n", " }\n", "\n", " else\n", " {\n", - " //Console.WriteLine($\"{key} not found!!\");\n", + " Console.WriteLine($\"{key} not found - Check if the trace has any elements: {t}\");\n", " }\n", " }\n", " }\n", @@ -563,10 +512,29 @@ }, "outputs": [], "source": [ - "string basePath = @\"Base Path To the ASP.NET Infra Run\";\n", + "string basePath = @\"Enter your basepath containing the ASP.NET artifacts here.\";\n", "var dataManager = new DataManager(basePath);" ] }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "dotnet_interactive": { + "language": "csharp" + }, + "polyglot_notebook": { + "kernelName": "csharp" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [], + "source": [ + "dataManager.Data" + ] + }, { "cell_type": "markdown", "metadata": {}, @@ -592,7 +560,8 @@ }, "outputs": [], "source": [ - "string runName = \"run1\";\n", + "// The name of the run from the yaml file for which the ASP.NET run is created for.\n", + "string runName = \"run\";\n", "\n", "Dictionary run = dataManager.GetAllBenchmarksForRun(runName);\n", "dataManager.Data.Display();\n", @@ -615,7 +584,7 @@ }, "outputs": [], "source": [ - "string benchmarkName = \"Name of the Benchmark\";\n", + "string benchmarkName = \"Name of the specific benchmark\";\n", "LoadInfo benchmarkData = dataManager.GetBenchmarkData(benchmark: benchmarkName, run: runName);\n", "benchmarkData.Id" ] @@ -665,7 +634,7 @@ }, "outputs": [], "source": [ - "dataManager.SaveBenchmarkData()" + "dataManager.SaveBenchmarkData(\"./\")" ] }, { @@ -678,7 +647,7 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": null, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -690,26 +659,14 @@ "languageId": "polyglot-notebook" } }, - "outputs": [ - { - "ename": "Error", - "evalue": "System.NullReferenceException: Object reference not set to an instance of an object.\r\n at Submission#11.<>d__0.MoveNext()\r\n--- End of stack trace from previous location ---\r\n at Microsoft.CodeAnalysis.Scripting.ScriptExecutionState.RunSubmissionsAsync[TResult](ImmutableArray`1 precedingExecutors, Func`2 currentExecutor, StrongBox`1 exceptionHolderOpt, Func`2 catchExceptionOpt, CancellationToken cancellationToken)", - "output_type": "error", - "traceback": [ - "System.NullReferenceException: Object reference not set to an instance of an object.\r\n", - " at Submission#11.<>d__0.MoveNext()\r\n", - "--- End of stack trace from previous location ---\r\n", - " at Microsoft.CodeAnalysis.Scripting.ScriptExecutionState.RunSubmissionsAsync[TResult](ImmutableArray`1 precedingExecutors, Func`2 currentExecutor, StrongBox`1 exceptionHolderOpt, Func`2 catchExceptionOpt, CancellationToken cancellationToken)" - ] - } - ], + "outputs": [], "source": [ - "var run1_vs_run2 = dataManager.GetBenchmarkToComparison(\"run1\", \"run2\");" + "var run1_vs_run2 = dataManager.GetBenchmarkToComparison(\"datas_2\", \"datas_3\");" ] }, { "cell_type": "code", - "execution_count": 12, + "execution_count": null, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -921,7 +878,7 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": null, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -933,23 +890,7 @@ "languageId": "polyglot-notebook" } }, - "outputs": [ - { - "ename": "Error", - "evalue": "System.NullReferenceException: Object reference not set to an instance of an object.\r\n at GC.Analysis.API.GoodLinq.Where[T](IEnumerable`1 data, Func`2 predicate) in C:\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs:line 107\r\n at Submission#12.SummaryTable.GenerateSummaryForComparison(String comparisonKey, Dictionary`2 comparison)\r\n at Submission#12.SummaryTable.GenerateSummaryForComparisons()\r\n at Submission#12.SummaryTable.SaveComparisons(String basePath)\r\n at Submission#13.<>d__0.MoveNext()\r\n--- End of stack trace from previous location ---\r\n at Microsoft.CodeAnalysis.Scripting.ScriptExecutionState.RunSubmissionsAsync[TResult](ImmutableArray`1 precedingExecutors, Func`2 currentExecutor, StrongBox`1 exceptionHolderOpt, Func`2 catchExceptionOpt, CancellationToken cancellationToken)", - "output_type": "error", - "traceback": [ - "System.NullReferenceException: Object reference not set to an instance of an object.\r\n", - " at GC.Analysis.API.GoodLinq.Where[T](IEnumerable`1 data, Func`2 predicate) in C:\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs:line 107\r\n", - " at Submission#12.SummaryTable.GenerateSummaryForComparison(String comparisonKey, Dictionary`2 comparison)\r\n", - " at Submission#12.SummaryTable.GenerateSummaryForComparisons()\r\n", - " at Submission#12.SummaryTable.SaveComparisons(String basePath)\r\n", - " at Submission#13.<>d__0.MoveNext()\r\n", - "--- End of stack trace from previous location ---\r\n", - " at Microsoft.CodeAnalysis.Scripting.ScriptExecutionState.RunSubmissionsAsync[TResult](ImmutableArray`1 precedingExecutors, Func`2 currentExecutor, StrongBox`1 exceptionHolderOpt, Func`2 catchExceptionOpt, CancellationToken cancellationToken)" - ] - } - ], + "outputs": [], "source": [ "Dictionary> comparisons = new()\n", "{\n", @@ -957,7 +898,7 @@ "};\n", "\n", "SummaryTable summaryTable = new(comparisons);\n", - "summaryTable.SaveComparisons(basePath);" + "summaryTable.SaveComparisons(\"./\");" ] }, { @@ -971,7 +912,7 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": null, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -1040,8 +981,27 @@ }, "outputs": [], "source": [ - "var run1_Benchmark = dataManager.GetBenchmarkData(benchmark: benchmarkName, \"run1\");\n", - "var run2_Benchmark = dataManager.GetBenchmarkData(benchmark: benchmarkName, \"run2\");\n", + "dataManager.Data" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "dotnet_interactive": { + "language": "csharp" + }, + "polyglot_notebook": { + "kernelName": "csharp" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [], + "source": [ + "var run1_Benchmark = dataManager.GetBenchmarkData(benchmark: \"CachingPlatform\", \"datas_2\");\n", + "var run2_Benchmark = dataManager.GetBenchmarkData(benchmark: \"CachingPlatform\", \"datas_3\");\n", "\n", "// Chart the PauseDurationMSec for the run1 vs. run2.\n", "ChartProperty(baseline: run1_Benchmark, comparand: run2_Benchmark, nameof(TraceGC.PauseDurationMSec))" From 9d573d2d0835bbd8a8df6805f2b64503ae55a4be Mon Sep 17 00:00:00 2001 From: mrsharm Date: Sat, 9 Sep 2023 13:25:54 -0700 Subject: [PATCH 19/26] Continued work on improving the usability of the analysis --- .../Notebooks/ASPNetBenchmarkAnalysis.ipynb | 2804 ++++++++++++++++- .../gc/GC.Infrastructure/Notebooks/README.md | 1 + 2 files changed, 2788 insertions(+), 17 deletions(-) diff --git a/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb b/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb index f6c56288611..6f6d583ef5d 100644 --- a/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb +++ b/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb @@ -12,7 +12,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -24,7 +24,53 @@ "languageId": "polyglot-notebook" } }, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
Installed Packages
  • Microsoft.Data.Analysis, 0.19.1
  • Microsoft.Diagnostics.Tracing.TraceEvent, 3.0.1
  • Microsoft.Playwright, 1.16.0
  • Newtonsoft.Json, 13.0.3
  • XPlot.Plotly, 4.0.6
  • XPlot.Plotly.Interactive, 4.0.7
  • YamlDotnet, 13.3.1
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/plain": [ + "Loading extensions from `C:\\Users\\musharm\\.nuget\\packages\\microsoft.data.analysis\\0.19.1\\interactive-extensions\\dotnet\\Microsoft.Data.Analysis.Interactive.dll`" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/plain": [ + "Loading extensions from `C:\\Users\\musharm\\.nuget\\packages\\xplot.plotly.interactive\\4.0.7\\interactive-extensions\\dotnet\\XPlot.Plotly.Interactive.dll`" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "Configuring PowerShell Kernel for XPlot.Plotly integration." + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "Installed support for XPlot.Plotly." + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "#r \"nuget: Microsoft.Diagnostics.Tracing.TraceEvent, 3.0.1\"\n", "#r \"nuget: YamlDotnet\"\n", @@ -56,7 +102,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 4, "metadata": { "dotnet_interactive": { "language": "pwsh" @@ -68,14 +114,136 @@ "languageId": "polyglot-notebook" } }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "MSBuild version 17.8.0-preview-23367-03+0ff2a83e9 for .NET\n", + " Determining projects to restore...\n", + " Restored C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj (in 273 ms).\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Analyzer.cs(10,16): warning CS8618: Non-nullable property 'CPUAnalyzer' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\AnalyzerManager.cs(25,44): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Analyzer.cs(45,16): warning CS8618: Non-nullable property 'TraceLog' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Analyzer.cs(45,16): warning CS8618: Non-nullable property 'CPUAnalyzer' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\AnalyzerManager.cs(69,44): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Analyzer.cs(147,35): warning CS8625: Cannot convert null literal to non-nullable reference type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\GCMethodsData.cs(8,29): warning CS8618: Non-nullable property 'gc_methods' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs(160,28): warning CS8629: Nullable value type may be null. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUThreadData.cs(5,23): warning CS8618: Non-nullable property 'Method' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUThreadData.cs(8,29): warning CS8618: Non-nullable property 'Callers' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUThreadData.cs(9,23): warning CS8618: Non-nullable property 'Thread' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GCAnalysis\\AffinitizedAnalysis.cs(8,23): warning CS8618: Non-nullable property 'Name' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(27,16): warning CS8618: Non-nullable property 'GCThreadNodes' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(27,16): warning CS8618: Non-nullable field '_callTree' must contain a non-null value when exiting constructor. Consider declaring the field as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(27,16): warning CS8618: Non-nullable field '_byName' must contain a non-null value when exiting constructor. Consider declaring the field as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalyzer.cs(19,23): warning CS8618: Non-nullable property 'ProcessName' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalyzer.cs(27,28): warning CS8618: Non-nullable property 'Parent' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalyzer.cs(29,28): warning CS8618: Non-nullable property 'StackView' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs(172,28): warning CS8629: Nullable value type may be null. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\SourceCodeAnalysis.cs(15,61): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\SourceCodeAnalysis.cs(18,43): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\SourceCodeAnalysis.cs(36,24): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs(179,16): warning CS8629: Nullable value type may be null. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GCAnalysis\\AffinitizedAnalysis.cs(51,50): warning CS8602: Dereference of a possibly null reference. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(120,34): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalyzer.cs(136,34): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\SourceCodeAnalysis.cs(46,28): warning CS8625: Cannot convert null literal to non-nullable reference type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\SourceCodeAnalysis.cs(101,24): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\SourceCodeAnalysis.cs(110,24): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\SourceCodeAnalysis.cs(201,20): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs(322,24): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs(356,44): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs(357,52): warning CS8602: Dereference of a possibly null reference. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs(357,52): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GCAnalysis\\GCAnalysisExt.cs(84,38): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(189,24): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(210,57): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(248,20): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(283,61): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(286,43): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(304,24): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(310,23): warning CS8625: Cannot convert null literal to non-nullable reference type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(311,25): warning CS8625: Cannot convert null literal to non-nullable reference type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GCAnalysis\\GCSummarization.cs(67,34): warning CS8602: Dereference of a possibly null reference. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GCAnalysis\\GCSummarization.cs(47,38): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalysisExt.cs(251,39): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalysisExt.cs(252,58): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalysisExt.cs(253,51): warning CS8604: Possible null reference argument for parameter 'metricOnLine' in 'string StackView.Annotate(SortedDictionary metricOnLine, SourceLocation sourceLocation)'. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalysisExt.cs(253,66): warning CS8604: Possible null reference argument for parameter 'sourceLocation' in 'string StackView.Annotate(SortedDictionary metricOnLine, SourceLocation sourceLocation)'. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(560,35): warning CS8604: Possible null reference argument for parameter 'inFileName' in 'void AnnotateLines(string inFileName, string outFileName, SortedDictionary lineData)'. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(564,29): warning CS8604: Possible null reference argument for parameter 'source' in 'KeyValuePair Enumerable.First>(IEnumerable> source)'. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(568,32): warning CS8604: Possible null reference argument for parameter 'path' in 'IEnumerable File.ReadLines(string path)'. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + " GC.Analysis.API -> C:\\Users\\musharm\\source\\repos\\performance\\artifacts\\bin\\GC.Analysis.API\\Debug\\net6.0\\GC.Analysis.API.dll\n", + "\n", + "Build succeeded.\n", + "\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Analyzer.cs(10,16): warning CS8618: Non-nullable property 'CPUAnalyzer' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\AnalyzerManager.cs(25,44): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Analyzer.cs(45,16): warning CS8618: Non-nullable property 'TraceLog' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Analyzer.cs(45,16): warning CS8618: Non-nullable property 'CPUAnalyzer' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\AnalyzerManager.cs(69,44): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Analyzer.cs(147,35): warning CS8625: Cannot convert null literal to non-nullable reference type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\GCMethodsData.cs(8,29): warning CS8618: Non-nullable property 'gc_methods' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs(160,28): warning CS8629: Nullable value type may be null. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUThreadData.cs(5,23): warning CS8618: Non-nullable property 'Method' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUThreadData.cs(8,29): warning CS8618: Non-nullable property 'Callers' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUThreadData.cs(9,23): warning CS8618: Non-nullable property 'Thread' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GCAnalysis\\AffinitizedAnalysis.cs(8,23): warning CS8618: Non-nullable property 'Name' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(27,16): warning CS8618: Non-nullable property 'GCThreadNodes' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(27,16): warning CS8618: Non-nullable field '_callTree' must contain a non-null value when exiting constructor. Consider declaring the field as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(27,16): warning CS8618: Non-nullable field '_byName' must contain a non-null value when exiting constructor. Consider declaring the field as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalyzer.cs(19,23): warning CS8618: Non-nullable property 'ProcessName' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalyzer.cs(27,28): warning CS8618: Non-nullable property 'Parent' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalyzer.cs(29,28): warning CS8618: Non-nullable property 'StackView' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs(172,28): warning CS8629: Nullable value type may be null. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\SourceCodeAnalysis.cs(15,61): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\SourceCodeAnalysis.cs(18,43): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\SourceCodeAnalysis.cs(36,24): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs(179,16): warning CS8629: Nullable value type may be null. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GCAnalysis\\AffinitizedAnalysis.cs(51,50): warning CS8602: Dereference of a possibly null reference. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(120,34): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalyzer.cs(136,34): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\SourceCodeAnalysis.cs(46,28): warning CS8625: Cannot convert null literal to non-nullable reference type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\SourceCodeAnalysis.cs(101,24): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\SourceCodeAnalysis.cs(110,24): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\SourceCodeAnalysis.cs(201,20): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs(322,24): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs(356,44): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs(357,52): warning CS8602: Dereference of a possibly null reference. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs(357,52): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GCAnalysis\\GCAnalysisExt.cs(84,38): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(189,24): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(210,57): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(248,20): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(283,61): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(286,43): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(304,24): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(310,23): warning CS8625: Cannot convert null literal to non-nullable reference type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(311,25): warning CS8625: Cannot convert null literal to non-nullable reference type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GCAnalysis\\GCSummarization.cs(67,34): warning CS8602: Dereference of a possibly null reference. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GCAnalysis\\GCSummarization.cs(47,38): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalysisExt.cs(251,39): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalysisExt.cs(252,58): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalysisExt.cs(253,51): warning CS8604: Possible null reference argument for parameter 'metricOnLine' in 'string StackView.Annotate(SortedDictionary metricOnLine, SourceLocation sourceLocation)'. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalysisExt.cs(253,66): warning CS8604: Possible null reference argument for parameter 'sourceLocation' in 'string StackView.Annotate(SortedDictionary metricOnLine, SourceLocation sourceLocation)'. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(560,35): warning CS8604: Possible null reference argument for parameter 'inFileName' in 'void AnnotateLines(string inFileName, string outFileName, SortedDictionary lineData)'. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(564,29): warning CS8604: Possible null reference argument for parameter 'source' in 'KeyValuePair Enumerable.First>(IEnumerable> source)'. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(568,32): warning CS8604: Possible null reference argument for parameter 'path' in 'IEnumerable File.ReadLines(string path)'. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + " 52 Warning(s)\n", + " 0 Error(s)\n", + "\n", + "Time Elapsed 00:00:03.11\n" + ] + } + ], "source": [ "dotnet build -c Debug \"..\\GC.Analysis.API\"" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -106,7 +274,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 65, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -148,12 +316,26 @@ " public double TotalAllocationsMB {get;set;} = double.NaN;\n", " public string TracePath {get; set;}\n", " public string ProcessName {get;set;}\n", + "}\n", + "\n", + "public class BenchmarkVolatilityData\n", + "{\n", + " public string Benchmark {get; set;}\n", + " public double WorkingSetMB {get;set;} = double.NaN;\n", + " public double PrivateMemoryMB {get;set;} = double.NaN;\n", + " public double RequestsPerMSec {get;set;} = double.NaN;\n", + " public double MeanLatencyMS {get; set;} = double.NaN;\n", + " public double Latency50thMS {get; set;} = double.NaN;\n", + " public double Latency75thMS {get; set;} = double.NaN;\n", + " public double Latency90thMS {get; set;} = double.NaN;\n", + " public double Latency99thMS {get; set;} = double.NaN;\n", + " public double HeapCount { get; set; }= double.NaN;\n", "}" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 103, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -165,7 +347,26 @@ "languageId": "polyglot-notebook" } }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "server,,,,,,,,,,datas0,,,,,,,,,," + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/plain": [ + "Benchmark Name, Working Set, Private Memory,RequestsPerMSec,MeanLatencyMS,Latency50thMS,Latency75thMS,Latency90thMS,Latency99thMS,HeapCount,,Benchmark Name, Working Set, Private Memory,RequestsPerMSec,MeanLatencyMS,Latency50thMS,Latency75thMS,Latency90thMS,Latency99thMS,HeapCount" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "// The DataManager is responsible for parsing all the data from ASP.NET results from a basepath.\n", "public class DataManager \n", @@ -418,6 +619,8 @@ " f.MeanHeapSizeBeforeMB = data.Stats.MeanSizePeakMB;\n", " f.MaxHeapSizeMB = data.Stats.MaxSizePeakMB;\n", " f.PercentTimeInGC = (data.GCs.Sum(gc => gc.PauseDurationMSec - gc.SuspendDurationMSec) / (data.Stats.ProcessDuration) ) * 100;\n", + " //f.MeanTimeTakeToChangeHeap = \n", + " //per GC change.\n", " f.TracePath = data.Parent.TraceLogPath;\n", " f.TotalAllocationsMB = data.Stats.TotalAllocatedMB;\n", " f.CommandLine = data.CommandLine;\n", @@ -493,12 +696,113 @@ " \n", " return comparisons;\n", " }\n", - "}" + "\n", + " private static double ComputeVolatility(List data)\n", + " {\n", + " var max = data.Max();\n", + " var min = data.Min();\n", + " return Math.Round(((max - min) / min) * 100, 2);\n", + " }\n", + "\n", + " public void SaveVolatilityData(List namesOfBuilds, List sortingCriteria = null)\n", + " {\n", + " // Build Parent -> < Build Name -> < Benchmark -> Data >>>\n", + " Dictionary>> listOfData = new();\n", + "\n", + " foreach (var build in namesOfBuilds)\n", + " {\n", + " if (!listOfData.TryGetValue(build, out var b))\n", + " {\n", + " listOfData[build] = b = new();\n", + " }\n", + "\n", + " foreach (var run in _runToBenchmarkData)\n", + " {\n", + " if (run.Key.Contains(build))\n", + " {\n", + " b.Add(run.Key, run.Value);\n", + " }\n", + " }\n", + " }\n", + "\n", + " // At this point all the data has been categorized.\n", + " Dictionary> buildToBenchmarkVolatilityData = new();\n", + "\n", + " // Get the Volatility Data Per Build.\n", + " foreach (var b in listOfData)\n", + " {\n", + " if (!buildToBenchmarkVolatilityData.TryGetValue(b.Key, out var volData))\n", + " {\n", + " buildToBenchmarkVolatilityData[b.Key] = volData = new();\n", + " }\n", + "\n", + " foreach (var br in _benchmarkToRunData)\n", + " {\n", + " volData[br.Key] = new();\n", + " }\n", + "\n", + " Dictionary> benchmarkToData = new();\n", + " foreach (var run in b.Value)\n", + " {\n", + " foreach (var benchmark in run.Value)\n", + " {\n", + " if (!benchmarkToData.TryGetValue(benchmark.Key, out var d))\n", + " {\n", + " benchmarkToData[benchmark.Key] = d = new();\n", + " }\n", + "\n", + " d.Add(benchmark.Value);\n", + " }\n", + " }\n", + "\n", + " foreach (var benchmark in benchmarkToData)\n", + " {\n", + " volData[benchmark.Key] = new BenchmarkVolatilityData\n", + " {\n", + " WorkingSetMB = ComputeVolatility( benchmark.Value.Select(v => v.WorkingSetMB) ),\n", + " PrivateMemoryMB = ComputeVolatility( benchmark.Value.Select(v => v.PrivateMemoryMB) ),\n", + " RequestsPerMSec = ComputeVolatility( benchmark.Value.Select(v => v.RequestsPerMSec) ),\n", + " MeanLatencyMS = ComputeVolatility( benchmark.Value.Select(v => v.MeanLatencyMS) ),\n", + " Latency50thMS = ComputeVolatility( benchmark.Value.Select(v => v.Latency50thMS) ),\n", + " Latency75thMS = ComputeVolatility( benchmark.Value.Select(v => v.Latency75thMS) ),\n", + " Latency90thMS = ComputeVolatility( benchmark.Value.Select(v => v.Latency90thMS) ),\n", + " Latency99thMS = ComputeVolatility( benchmark.Value.Select(v => v.Latency99thMS) ),\n", + " HeapCount = ComputeVolatility( benchmark.Value.Select(v => (double)v.NumberOfHeapCountSwitches )),\n", + " Benchmark = benchmark.Key,\n", + " };\n", + " }\n", + " }\n", + "\n", + " // Create CSV.\n", + " StringBuilder sb = new();\n", + " const int singleBuildColumnSize = 10;\n", + " int numberOfBuilds = buildToBenchmarkVolatilityData.Count;\n", + "\n", + " // Add top row of the pattern: followed by 10 commas, one for each column and one to separate columns.\n", + " sb.AppendLine(string.Join(\"\", namesOfBuilds.Select(n => n + string.Join(\"\", Enumerable.Repeat(\",\", singleBuildColumnSize)))) );\n", + "\n", + " // Add the row with the names of the columns of the following pattern: ,...,,.\n", + " string columnHeader = \"Benchmark Name,WorkingSetMB,PrivateMemoryMB,RequestsPerMSec,MeanLatencyMS,Latency50thMS,Latency75thMS,Latency90thMS,Latency99thMS,HeapCount\";\n", + " sb.AppendLine(string.Join(\",,\", Enumerable.Repeat(columnHeader, namesOfBuilds.Count)));\n", + "\n", + " // Start creating the benchmark based info for each build.\n", + " foreach (var build in namesOfBuilds)\n", + " {\n", + " var r = buildToBenchmarkVolatilityData[build].OrderByDescending(b => b.Value.PrivateMemoryMB);\n", + " }\n", + " }\n", + "}\n", + "\n", + "\n", + "List da = new List { \"server\", \"datas0\" };\n", + "string.Join(\"\", da.Select(c => c + string.Join(\"\", Enumerable.Repeat(\",\", 10)))).Display();\n", + "string columnHeader = \"Benchmark Name, Working Set, Private Memory,RequestsPerMSec,MeanLatencyMS,Latency50thMS,Latency75thMS,Latency90thMS,Latency99thMS,HeapCount\";\n", + "string.Join(\",,\", Enumerable.Repeat(columnHeader, da.Count)).Display();" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 86, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -510,15 +814,103 @@ "languageId": "polyglot-notebook" } }, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
2
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "dataManager.SaveVolatilityData(new List { \"server\", \"datas4\" });" + ] + }, + { + "cell_type": "code", + "execution_count": 85, + "metadata": { + "dotnet_interactive": { + "language": "csharp" + }, + "polyglot_notebook": { + "kernelName": "csharp" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The following key doesn't have the pertinent process server_2 | PlaintextMapAction - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_2\\PlaintextMapAction_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , conhost , MapAction , MoUsoCoreWorker , svchost , WmiPrvSE , PerfView , conhost , Process(2664) , Process(6300) , Process(10168) , Process(11164) , Process(12032) , Process(7088) , Process(2796) , Process(11460) , Process(8856) , Process(2200) , Process(10004) , Process(9044) , Process(10856) , Process(4032) , Process(11484)\n", + "The following key doesn't have the pertinent process server_0 | PlaintextEndpoint - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_0\\PlaintextEndpoint_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , conhost , Benchmarks , PerfView , conhost , Process(2664) , Process(6972) , Process(9504) , Process(1412) , Process(9520)\n", + "The following key doesn't have the pertinent process server_0 | PlaintextMapAction - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_0\\PlaintextMapAction_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , conhost , MapAction , PerfView , conhost , Process(2664) , Process(6300) , Process(10168) , Process(11164) , Process(12032) , Process(7088) , Process(2796) , Process(11460) , Process(8856) , Process(2200) , Process(10004)\n", + "The following key doesn't have the pertinent process server_1 | JsonPlatformInline - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_1\\JsonPlatformInline_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , svchost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664)\n", + "The following key doesn't have the pertinent process server_0 | PlaintextPlatformInline - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_0\\PlaintextPlatformInline_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(3776) , Process(384) , Process(7644) , Process(1124) , Process(7892) , Process(10364)\n", + "The following key doesn't have the pertinent process server_1 | JsonPlatform - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_1\\JsonPlatform_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(5780) , Process(6976) , Process(8804) , Process(9348) , Process(11844) , Process(10816) , Process(7496) , Process(8272) , Process(2000) , Process(8280) , Process(10792) , Process(4844) , Process(2728) , Process(1348) , Process(8740) , Process(9856)\n", + "The following key doesn't have the pertinent process server_0 | PlaintextPlatform - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_0\\PlaintextPlatform_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(11632) , Process(4992) , Process(12040) , Process(12192) , Process(8312) , Process(9876) , Process(7184) , Process(11176) , Process(1132) , Process(7252) , Process(3600) , Process(5080) , Process(6072) , Process(2360)\n", + "The following key doesn't have the pertinent process server_1 | Plaintext - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_1\\Plaintext_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , conhost , Benchmarks , PerfView , conhost , Process(2664) , Process(12104) , Process(12164) , Process(5364) , Process(5272) , Process(8760) , Process(4848) , Process(6820) , Process(9860) , Process(1504) , Process(840)\n", + "The following key doesn't have the pertinent process server_2 | PlaintextPlatformInline - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_2\\PlaintextPlatformInline_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(5780) , Process(6976)\n", + "The following key doesn't have the pertinent process server_1 | PlaintextEndpoint - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_1\\PlaintextEndpoint_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , conhost , Benchmarks , PerfView , conhost , Process(2664) , Process(6972) , Process(9504) , Process(1412) , Process(9520) , Process(12156) , Process(3040)\n", + "The following key doesn't have the pertinent process server_1 | PlaintextPlatformInline - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_1\\PlaintextPlatformInline_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664)\n", + "The following key doesn't have the pertinent process server_2 | PlaintextEndpoint - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_2\\PlaintextEndpoint_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , conhost , Benchmarks , PerfView , conhost , Process(2664) , Process(6972) , Process(9504) , Process(1412) , Process(9520) , Process(12156) , Process(3040) , Process(2052) , Process(3340)\n", + "The following key doesn't have the pertinent process server_1 | PlaintextMapAction - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_1\\PlaintextMapAction_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , conhost , MapAction , PerfView , conhost , Process(2664) , Process(6300) , Process(10168) , Process(11164) , Process(12032) , Process(7088) , Process(2796) , Process(11460) , Process(8856) , Process(2200) , Process(10004) , Process(9044) , Process(10856)\n", + "The following key doesn't have the pertinent process server_2 | PlaintextPlatform - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_2\\PlaintextPlatform_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(1728)\n", + "The following key doesn't have the pertinent process server_2 | JsonPlatformInline - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_2\\JsonPlatformInline_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(5152) , Process(11296)\n", + "The following key doesn't have the pertinent process server_1 | PlaintextPlatform - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_1\\PlaintextPlatform_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(11632) , Process(4992) , Process(12040) , Process(12192) , Process(8312) , Process(9876) , Process(7184) , Process(11176) , Process(1132) , Process(7252) , Process(3600) , Process(5080) , Process(6072) , Process(2360) , Process(10132) , Process(7584)\n", + "The following key doesn't have the pertinent process server_0 | JsonPlatform - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_0\\JsonPlatform_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(5780) , Process(6976) , Process(8804) , Process(9348) , Process(11844) , Process(10816) , Process(7496) , Process(8272) , Process(2000) , Process(8280) , Process(10792) , Process(4844) , Process(2728) , Process(1348)\n", + "The following key doesn't have the pertinent process server_0 | Plaintext - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_0\\Plaintext_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , conhost , Benchmarks , PerfView , conhost , Process(2664) , Process(12104) , Process(12164) , Process(5364) , Process(5272) , Process(8760) , Process(4848) , Process(6820) , Process(9860)\n", + "The following key doesn't have the pertinent process server_2 | JsonPlatform - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_2\\JsonPlatform_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664)\n", + "The following key doesn't have the pertinent process server_0 | JsonPlatformInline - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_0\\JsonPlatformInline_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , svchost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(10016) , Process(10072) , Process(10068) , Process(1340) , Process(3776) , Process(3564) , Process(6756) , Process(6900) , Process(1376) , Process(11216) , Process(12212) , Process(11512) , Process(7472) , Process(11540)\n", + "The following key doesn't have the pertinent process server_2 | Plaintext - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_2\\Plaintext_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , conhost , Benchmarks , PerfView , conhost , Process(2664)\n" + ] + } + ], "source": [ - "string basePath = @\"Enter your basepath containing the ASP.NET artifacts here.\";\n", + "string basePath = @\"C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\";\n", "var dataManager = new DataManager(basePath);" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 7, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -530,7 +922,2366 @@ "languageId": "polyglot-notebook" } }, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
keyvalue
datas_3 | CachingPlatform
Submission#4+LoadInfo
WorkingSetMB
98
PrivateMemoryMB
63
Latency50thMS
0.56
Latency75thMS
0.61
Latency90thMS
0.75
Latency99thMS
5.97
MeanLatencyMS
0.73
ProcessId
12188
RequestsPerMSec
429.217
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
PlatformBenchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\mbvjdesc.rdk\\src\\BenchmarksApps\\TechEmpower\\PlatformBenchmarks\\published\\PlatformBenchmarks.exe"  
ProcessID
12188
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.293928
PromotedMB
1.031904
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
722.815
DurationMSec
4.088899999999967
PauseDurationMSec
4.304399999999987
SuspendDurationMSec
0.0049999999999954525
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
722.6414
PauseStartRelativeMSec
722.6414
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1293928
TotalPromoted1031904
Depth0
GenerationSize0584
TotalPromotedSize01031904
GenerationSize11042048
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize45384
FinalizationPromotedCount27
PinnedObjectCount1
SinkBlockCount1
GCHandleCount297
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
2.1192462022616407
AllocRateMBSec
0
HeapSizePeakMB
2.742152
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.742152
GenSizeBeforeMB
[ 2.621536, 0, 0, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
0.5921211732704126
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
1.784392
PromotedMB
1.458912
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
1008.8607
DurationMSec
3.434500000000071
PauseDurationMSec
3.49980000000005
SuspendDurationMSec
0.031100000000037653
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
281.90239999999994
PauseStartRelativeMSec
1008.8072
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1784392
TotalPromoted1458912
Depth1
GenerationSize084504
TotalPromotedSize0481216
GenerationSize1470896
TotalPromotedSize1977696
GenerationSize2977696
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize760
FinalizationPromotedCount27
PinnedObjectCount3
SinkBlockCount1
GCHandleCount311
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.583568
RatioPeakAfter
2.1207940856045084
AllocRateMBSec
9.164760569615586
HeapSizePeakMB
3.7843280000000004
UserAllocated
[ 2.583568, 0, 0, 0, 0 ]
HeapSizeBeforeMB
3.7843280000000004
GenSizeBeforeMB
[ 2.621664, 1.042048, 0, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
1.226269454124758
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
2.309712
PromotedMB
0.601064
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
1271.1016
DurationMSec
1.7661000000000513
PauseDurationMSec
1.7903999999998632
SuspendDurationMSec
0.005599999999958527
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
258.7871
PauseStartRelativeMSec
1271.0832
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize2309712
TotalPromoted601064
Depth0
GenerationSize0584
TotalPromotedSize0601064
GenerationSize11080136
TotalPromotedSize10
GenerationSize2977696
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount1
GCHandleCount286
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount11
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.578488
RatioPeakAfter
1.8216608823957272
AllocRateMBSec
9.963742396742342
HeapSizePeakMB
4.207512
UserAllocated
[ 2.578488, 0, 0, 0, 0 ]
HeapSizeBeforeMB
4.207512
GenSizeBeforeMB
[ 2.638304, 0.470896, 0.977696, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
0.687089253676877
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
2.69248
PromotedMB
0.374352
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
1549.1166
DurationMSec
1.4981000000000222
PauseDurationMSec
1.525899999999865
SuspendDurationMSec
0.00659999999993488
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
276.22890000000007
PauseStartRelativeMSec
1549.0975
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize2692480
TotalPromoted374352
Depth0
GenerationSize0584
TotalPromotedSize0374352
GenerationSize11462904
TotalPromotedSize10
GenerationSize2977696
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount1
GCHandleCount287
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount6
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.58276
RatioPeakAfter
1.7827519610173521
AllocRateMBSec
9.350071625380252
HeapSizePeakMB
4.8000240000000005
UserAllocated
[ 2.58276, 0, 0, 0, 0 ]
HeapSizeBeforeMB
4.8000240000000005
GenSizeBeforeMB
[ 2.621576, 1.080136, 0.977696, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
0.549369443840346
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
3.515672
PromotedMB
0.674712
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
5
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
1789.9253
DurationMSec
2.0594999999998436
PauseDurationMSec
2.082499999999982
SuspendDurationMSec
0.005100000000084037
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
239.29419999999982
PauseStartRelativeMSec
1789.9098
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3515672
TotalPromoted674712
Depth0
GenerationSize0584
TotalPromotedSize0674712
GenerationSize12145888
TotalPromotedSize10
GenerationSize2977696
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount1
GCHandleCount287
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount5
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.722864
RatioPeakAfter
1.5140707096680235
AllocRateMBSec
11.378729614006533
HeapSizePeakMB
5.322976
UserAllocated
[ 2.582688, 0, 0, 0.140176, 0 ]
HeapSizeBeforeMB
5.322976
GenSizeBeforeMB
[ 2.621552, 1.462904, 0.977696, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
0.8627593301258918
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.708248
PromotedMB
0.590664
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
2101.5986
DurationMSec
2.445100000000366
PauseDurationMSec
2.4773999999997613
SuspendDurationMSec
0.006899999999859574
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
309.5901000000001
PauseStartRelativeMSec
2101.5758
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6708248
TotalPromoted590664
Depth0
GenerationSize02591472
TotalPromotedSize0590664
GenerationSize12747576
TotalPromotedSize10
GenerationSize2977696
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize5022
FinalizationPromotedCount2
PinnedObjectCount2
SinkBlockCount2
GCHandleCount407
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount8
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.573776
RatioPeakAfter
0.8953205069341503
AllocRateMBSec
8.313495812689098
HeapSizePeakMB
6.006032
UserAllocated
[ 2.573776, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.006032
GenSizeBeforeMB
[ 2.621624, 2.145888, 0.977696, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
0.7938667115286796
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2N
HeapSizeAfterMB
6.991184
PromotedMB
4.5372
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7637.5816
DurationMSec
8.764299999999821
PauseDurationMSec
9.134000000000015
SuspendDurationMSec
0.31890000000021246
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
5533.1983
PauseStartRelativeMSec
7637.2429
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6991184
TotalPromoted4537200
Depth2
GenerationSize00
TotalPromotedSize01246056
GenerationSize13385824
TotalPromotedSize12059176
GenerationSize23036696
TotalPromotedSize2971208
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize4307840
TotalPromotedSize40
FinalizationPromotedSize12162
FinalizationPromotedCount13
PinnedObjectCount11
SinkBlockCount4
GCHandleCount693
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration2
Gen0ReductionCount7
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.101656
RatioPeakAfter
0.94569389104907
AllocRateMBSec
0.3798266185399501
HeapSizePeakMB
6.6115200000000005
UserAllocated
[ 2.101656, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.6115200000000005
GenSizeBeforeMB
[ 2.625424, 2.747576, 0.977696, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
0.16480426480382662
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
8.82868
PromotedMB
1.236088
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7655.8309
DurationMSec
2.689400000000205
PauseDurationMSec
3.1291000000001077
SuspendDurationMSec
0.39789999999993597
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
9.073300000000017
PauseStartRelativeMSec
7655.4201
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8828680
TotalPromoted1236088
Depth0
GenerationSize01577936
TotalPromotedSize01236088
GenerationSize13385824
TotalPromotedSize10
GenerationSize23036696
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize4567400
TotalPromotedSize40
FinalizationPromotedSize144
FinalizationPromotedCount6
PinnedObjectCount2
SinkBlockCount4
GCHandleCount819
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount1
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.142944
RatioPeakAfter
1.0536940969657975
AllocRateMBSec
236.18132322308264
HeapSizePeakMB
9.302727999999998
UserAllocated
[ 2.142944, 0, 0, 0, 0 ]
HeapSizeBeforeMB
9.302727999999998
GenSizeBeforeMB
[ 2.619384, 3.385824, 3.036696, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
25.64331606897066
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
11.1488
PromotedMB
10.962128
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
9
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7678.4077
DurationMSec
31.232700000000477
PauseDurationMSec
11.544799999999668
SuspendDurationMSec
1.1186999999999898
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
0.873000000000502
PauseStartRelativeMSec
7677.9052
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
11.05540000000019
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11148800
TotalPromoted10962128
Depth2
GenerationSize00
TotalPromotedSize01033320
GenerationSize13320200
TotalPromotedSize13321008
GenerationSize26464776
TotalPromotedSize26347040
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize41103000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount19
GCHandleCount1056
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.0743936567164176
AllocRateMBSec
0
HeapSizePeakMB
11.978199999999998
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
8.26128
GenSizeBeforeMB
[ 1.577936, 3.385824, 3.036696, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
39.117294371489606
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
7.49076
PromotedMB
0.935304
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7678.6077
DurationMSec
2.2598000000007232
PauseDurationMSec
2.929300000000694
SuspendDurationMSec
0
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
20.08639999999923
PauseStartRelativeMSec
7678.6077
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize7490760
TotalPromoted935304
Depth0
GenerationSize00
TotalPromotedSize0935304
GenerationSize13428080
TotalPromotedSize10
GenerationSize23036696
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize4765160
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount4
GCHandleCount901
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount1239
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure0
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.4473119999999997
RatioPeakAfter
1.2474803624732338
AllocRateMBSec
121.83925442090637
HeapSizePeakMB
9.344576
UserAllocated
[ 2.186552, 0, 0, 0.26076, 0 ]
HeapSizeBeforeMB
9.344576
GenSizeBeforeMB
[ 2.661232, 3.385824, 3.036696, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
12.72739912321026
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1F
HeapSizeAfterMB
10.372416
PromotedMB
4.660736
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeForegroundGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7689.0649
DurationMSec
2.1250999999992928
PauseDurationMSec
2.4206999999996697
SuspendDurationMSec
0.2672999999995227
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
7.917500000000473
PauseStartRelativeMSec
7688.786
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10372416
TotalPromoted4660736
Depth1
GenerationSize00
TotalPromotedSize01339728
GenerationSize12630336
TotalPromotedSize13321008
GenerationSize26464776
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize41016480
TotalPromotedSize40
FinalizationPromotedSize144
FinalizationPromotedCount6
PinnedObjectCount2
SinkBlockCount5
GCHandleCount1024
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount98
ReasonAllocSmall
GlobalMechanismsPromotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated6168
FreeListConsumed6312
AllocedSinceLastGCMB
2.122624
RatioPeakAfter
0.9020016165954008
AllocRateMBSec
268.0927060309281
HeapSizePeakMB
9.355936
UserAllocated
[ 2.122624, 0, 0, 0, 0 ]
HeapSizeBeforeMB
9.355936
GenSizeBeforeMB
[ 2.630336, 3.42808, 3.036696, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
23.415101274879923
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0F
HeapSizeAfterMB
11.1488
PromotedMB
1.03332
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeForegroundGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7706.2888
DurationMSec
2.479699999999866
PauseDurationMSec
3.1019999999998618
SuspendDurationMSec
0.5739000000003216
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
14.500600000000304
PauseStartRelativeMSec
7705.6915
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11148800
TotalPromoted1033320
Depth0
GenerationSize00
TotalPromotedSize01033320
GenerationSize13320200
TotalPromotedSize10
GenerationSize26464776
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize41103000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount8
GCHandleCount1056
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount2218
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
1.931968
RatioPeakAfter
1.0743936567164176
AllocRateMBSec
133.2336592968539
HeapSizePeakMB
11.978199999999998
UserAllocated
[ 1.931968, 0, 0, 0, 0 ]
HeapSizeBeforeMB
11.978199999999998
GenSizeBeforeMB
[ 2.622264, 2.630336, 6.464776, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
17.62239669139691
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.970912
PromotedMB
0.6008
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7737.9933
DurationMSec
2.386800000000221
PauseDurationMSec
2.792699999999968
SuspendDurationMSec
0.37010000000009313
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
27.969699999999648
PauseStartRelativeMSec
7737.612
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11970912
TotalPromoted600800
Depth0
GenerationSize00
TotalPromotedSize0600800
GenerationSize13923952
TotalPromotedSize10
GenerationSize26464776
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize41321360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount15
GCHandleCount1123
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount38140
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.305072
RatioPeakAfter
1.0595389891764302
AllocRateMBSec
82.41318283714266
HeapSizePeakMB
12.683647999999998
UserAllocated
[ 2.305072, 0, 0, 0, 0 ]
HeapSizeBeforeMB
12.683647999999998
GenSizeBeforeMB
[ 2.637848, 3.3202, 6.464776, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
9.078290380464473
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
11.844488
PromotedMB
3.710792
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7818.1358
DurationMSec
4.40059999999994
PauseDurationMSec
5.028699999999844
SuspendDurationMSec
0.5290999999997439
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
77.17789999999968
PauseStartRelativeMSec
7817.5589
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11844488
TotalPromoted3710792
Depth1
GenerationSize00
TotalPromotedSize0786888
GenerationSize1788472
TotalPromotedSize12923904
GenerationSize29366712
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize41428480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount19
GCHandleCount1123
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration1
Gen0ReductionCount1075
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated21968
FreeListConsumed22008
AllocedSinceLastGCMB
4.8774560000000005
RatioPeakAfter
1.3382373303092543
AllocRateMBSec
63.197573398602714
HeapSizePeakMB
15.850735999999998
UserAllocated
[ 4.877392, 0, 0, 6.40000000000085E-05, 0 ]
HeapSizeBeforeMB
15.850735999999998
GenSizeBeforeMB
[ 5.201184, 3.923952, 6.464776, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
6.117148744747834
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.875
PromotedMB
0.009768
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7848.4118
DurationMSec
1.2707000000000335
PauseDurationMSec
1.6557000000002517
SuspendDurationMSec
0.3298000000004322
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
25.511899999999514
PauseStartRelativeMSec
7848.0493
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11875000
TotalPromoted9768
Depth0
GenerationSize09912
TotalPromotedSize09768
GenerationSize1788472
TotalPromotedSize10
GenerationSize29366712
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize41449080
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount31
GCHandleCount1123
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount53
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
4.935408
RatioPeakAfter
1.311119494736842
AllocRateMBSec
193.45513270278158
HeapSizePeakMB
15.569543999999999
UserAllocated
[ 4.935408, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.569543999999999
GenSizeBeforeMB
[ 5.153536, 0.788472, 9.366712, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
6.0943918491153655
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
11.8902
PromotedMB
12.410704
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
16
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7868.1712
DurationMSec
22.467000000000553
PauseDurationMSec
1.3482999999996537
SuspendDurationMSec
0.5153000000000247
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
0.1066000000000713
PauseStartRelativeMSec
7867.8804
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.0907999999999447
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11890200
TotalPromoted12410704
Depth2
GenerationSize016872
TotalPromotedSize016608
GenerationSize1788472
TotalPromotedSize12923904
GenerationSize29366712
TotalPromotedSize29209432
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize41457320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount9
GCHandleCount1125
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.2864604464180585
AllocRateMBSec
0
HeapSizePeakMB
15.296271999999998
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.42592
GenSizeBeforeMB
[ 0.009912, 0.788472, 9.366712, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
11.10248390333879
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.88216
PromotedMB
0.008664
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7868.4048
DurationMSec
1.1680999999998676
PauseDurationMSec
1.5372999999999593
SuspendDurationMSec
0
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
18.72110000000066
PauseStartRelativeMSec
7868.4048
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11882160
TotalPromoted8664
Depth0
GenerationSize08832
TotalPromotedSize08664
GenerationSize1788472
TotalPromotedSize10
GenerationSize29366712
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize41457320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount38
GCHandleCount1125
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount46
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure0
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
4.926112000000001
RatioPeakAfter
1.2873309229971652
AllocRateMBSec
263.13154675739287
HeapSizePeakMB
15.296271999999998
UserAllocated
[ 4.665288, 0, 0, 0.260824, 0 ]
HeapSizeBeforeMB
15.296271999999998
GenSizeBeforeMB
[ 4.880264, 0.788472, 9.366712, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
7.588457133830471
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0F
HeapSizeAfterMB
11.8902
PromotedMB
0.016608
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeForegroundGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7889.289
DurationMSec
1.2439000000003944
PauseDurationMSec
1.66150000000016
SuspendDurationMSec
0.35159999999996217
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
19.328999999999724
PauseStartRelativeMSec
7888.9029
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11890200
TotalPromoted16608
Depth0
GenerationSize016872
TotalPromotedSize016608
GenerationSize1788472
TotalPromotedSize10
GenerationSize29366712
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize41457320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount8
GCHandleCount1125
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount57
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
3.874656
RatioPeakAfter
1.2193900859531377
AllocRateMBSec
200.45817165916785
HeapSizePeakMB
14.498791999999998
UserAllocated
[ 3.87472, 0, 0, -6.4E-05, 0 ]
HeapSizeBeforeMB
14.498791999999998
GenSizeBeforeMB
[ 4.082784, 0.788472, 9.366712, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
7.915485576809362
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.889472
PromotedMB
0.015928
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7909.9959
DurationMSec
1.2030000000004293
PauseDurationMSec
1.6023000000004686
SuspendDurationMSec
0.3411999999998443
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
18.97980000000007
PauseStartRelativeMSec
7909.6204
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11889472
TotalPromoted15928
Depth0
GenerationSize016144
TotalPromotedSize015928
GenerationSize1788472
TotalPromotedSize10
GenerationSize29366712
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize41457320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount12
GCHandleCount1125
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount1059
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
4.857416
RatioPeakAfter
1.3037134029164625
AllocRateMBSec
255.9255629669429
HeapSizePeakMB
15.500464
UserAllocated
[ 4.857416, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.500464
GenSizeBeforeMB
[ 5.084456, 0.788472, 9.366712, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
7.784919906134101
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
12.410856
PromotedMB
0.782504
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7929.97
DurationMSec
1.4749999999994543
PauseDurationMSec
1.8145999999997002
SuspendDurationMSec
0.2878000000000611
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
18.45560000000023
PauseStartRelativeMSec
7929.6555
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize12410856
TotalPromoted782504
Depth1
GenerationSize00
TotalPromotedSize014216
GenerationSize1598696
TotalPromotedSize1768288
GenerationSize210085776
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize41465560
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount13
GCHandleCount1125
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration1
Gen0ReductionCount57
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
4.736384
RatioPeakAfter
1.2395380302535133
AllocRateMBSec
256.6366848002742
HeapSizePeakMB
15.383727999999998
UserAllocated
[ 4.736384, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.383727999999998
GenSizeBeforeMB
[ 4.96772, 0.788472, 9.366712, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
8.952057700465247
(1527 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.124067550096928
MeanSizeAfterMB
15.571952289592774
MeanSizePeakMB
21.532665923723354
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1547
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
11.544799999999668
TotalPauseTimeMSec
1738.9324999999474
MaxSuspendDurationMSec
6.222799999999552
MaxSizePeakMB
24.128584
MaxAllocRateMBSec
529.2851177675614
TotalAllocatedMB
11428.915800000004
TotalCpuMSec
0
TotalPromotedMB
199.95960000000034
TotalSizeAfterMB
24089.810192000023
TotalSizePeakMB
33311.034184000026
FinalizedObjects(empty)
ProcessDuration
37258.5698
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.1038086757990537
MeanSizeAfterMB
15.608186979778225
MeanSizePeakMB
21.59136546901502
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1533
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
7.02809999999954
TotalPauseTimeMSec
1692.1386999999493
MaxSuspendDurationMSec
6.222799999999552
MaxSizePeakMB
24.128584
MaxAllocRateMBSec
445.2314613176797
TotalAllocatedMB
11366.175320000002
TotalCpuMSec
0
TotalPromotedMB
154.49357600000013
TotalSizeAfterMB
23927.35064000002
TotalSizePeakMB
33099.563264000026
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
2.2515181818180694
MeanSizeAfterMB
12.039033454545455
MeanSizePeakMB
16.144084363636363
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
11
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
5.028699999999844
TotalPauseTimeMSec
24.766699999998764
MaxSuspendDurationMSec
0.5290999999997439
MaxSizePeakMB
23.019232000000002
MaxAllocRateMBSec
529.2851177675614
TotalAllocatedMB
60.638824
TotalCpuMSec
0
TotalPromotedMB
17.555992
TotalSizeAfterMB
132.429368
TotalSizePeakMB
177.584928
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
7.342366666666446
MeanSizeAfterMB
10.010061333333333
MeanSizePeakMB
11.295330666666667
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
3
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
11.544799999999668
TotalPauseTimeMSec
22.027099999999336
MaxSuspendDurationMSec
1.1186999999999898
MaxSizePeakMB
15.296271999999998
MaxAllocRateMBSec
0.3798266185399501
TotalAllocatedMB
2.101656
TotalCpuMSec
0
TotalPromotedMB
27.910032
TotalSizeAfterMB
30.030184
TotalSizePeakMB
33.885992
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2N
HeapSizeAfterMB
6.991184
PromotedMB
4.5372
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7637.5816
DurationMSec
8.764299999999821
PauseDurationMSec
9.134000000000015
SuspendDurationMSec
0.31890000000021246
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
5533.1983
PauseStartRelativeMSec
7637.2429
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6991184
TotalPromoted4537200
Depth2
GenerationSize00
TotalPromotedSize01246056
GenerationSize13385824
TotalPromotedSize12059176
GenerationSize23036696
TotalPromotedSize2971208
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize4307840
TotalPromotedSize40
FinalizationPromotedSize12162
FinalizationPromotedCount13
PinnedObjectCount11
SinkBlockCount4
GCHandleCount693
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration2
Gen0ReductionCount7
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.101656
RatioPeakAfter
0.94569389104907
AllocRateMBSec
0.3798266185399501
HeapSizePeakMB
6.6115200000000005
UserAllocated
[ 2.101656, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.6115200000000005
GenSizeBeforeMB
[ 2.625424, 2.747576, 0.977696, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
0.16480426480382662
BGCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
11.1488
PromotedMB
10.962128
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
9
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7678.4077
DurationMSec
31.232700000000477
PauseDurationMSec
11.544799999999668
SuspendDurationMSec
1.1186999999999898
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
0.873000000000502
PauseStartRelativeMSec
7677.9052
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
11.05540000000019
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11148800
TotalPromoted10962128
Depth2
GenerationSize00
TotalPromotedSize01033320
GenerationSize13320200
TotalPromotedSize13321008
GenerationSize26464776
TotalPromotedSize26347040
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize41103000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount19
GCHandleCount1056
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.0743936567164176
AllocRateMBSec
0
HeapSizePeakMB
11.978199999999998
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
8.26128
GenSizeBeforeMB
[ 1.577936, 3.385824, 3.036696, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
39.117294371489606
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
11.8902
PromotedMB
12.410704
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
16
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7868.1712
DurationMSec
22.467000000000553
PauseDurationMSec
1.3482999999996537
SuspendDurationMSec
0.5153000000000247
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
0.1066000000000713
PauseStartRelativeMSec
7867.8804
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.0907999999999447
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11890200
TotalPromoted12410704
Depth2
GenerationSize016872
TotalPromotedSize016608
GenerationSize1788472
TotalPromotedSize12923904
GenerationSize29366712
TotalPromotedSize29209432
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize41457320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount9
GCHandleCount1125
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.2864604464180585
AllocRateMBSec
0
HeapSizePeakMB
15.296271999999998
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.42592
GenSizeBeforeMB
[ 0.009912, 0.788472, 9.366712, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
11.10248390333879
GCThreadIDsToHeapNumbers(empty)
DurationMSec
40092.842000000004
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="57002"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\CachingPlatform_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 12:43:39 PM"\\r\\n SessionEndTime="8/21/2023 12:44:24 PM"\\r\\n SessionDuration="00:0...
Events
[ <Event MSec= "0.0000" PID="8068" PName="PerfView" TID="1672" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 12:44:21 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="171" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 12:43:39 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="8068" PName="PerfView" TID="1672" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "15.6412" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="8068" PName="PerfView" TID="1672" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "15.6097" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "15.6412" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "15.6611" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "15.6611" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", + "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337157948276.9
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="8068" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="171.8675" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmpE397.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", + "
Count105
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="1672" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337157948276.9" /> ... (more) ]
Count1392
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", + "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="100" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1217" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="145" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="28" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", + " ... (more) ]
Count78
(values)
indexvalue
0\r\n", + "
1\r\n", + "
2\r\n", + "
3\r\n", + "
4\r\n", + "
5\r\n", + "
6\r\n", + "
7\r\n", + "
8\r\n", + "
9\r\n", + "
10\r\n", + "
11\r\n", + "
12\r\n", + "
13\r\n", + "
14\r\n", + "
15\r\n", + "
16\r\n", + "
17\r\n", + "
18\r\n", + "
19\r\n", + "
... (more)
MaxEventIndex57002
EventCount
57002
Size
10712906
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\CachingPlatform_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", + "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", + "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", + "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", + "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", + " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", + " at lambda_method760(Closure, TraceLog)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 12:43:39Z
SessionEndTime2023-08-21 12:44:24Z
SessionEndTimeRelativeMSec
44135.8104
SessionDuration00:00:44.1358104
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [98, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [100, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [101, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\CachingPlatform_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
PlatformBenchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\mbvjdesc.rdk\\src\\BenchmarksApps\\TechEmpower\\PlatformBenchmarks\\published\\PlatformBenchmarks.exe"  
NumberOfHeapCountSwitches
6
Benchmark
CachingPlatform
Id
datas_3 | CachingPlatform
TotalSuspensionTimeMSec
342.3047999999951
PercentPauseTimeInGC
4.6672014232815435
PercentTimeInGC
3.748473726975834
MeanHeapSizeBeforeMB
21.532665923723354
MaxHeapSizeMB
24.128584
TotalAllocationsMB
11428.915800000004
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\CachingPlatform_Windows.gc.etl.zip
ProcessName
PlatformBenchmarks
datas_3 | ConnectionCloseHttpsHttpSys
Submission#4+LoadInfo
WorkingSetMB
63
PrivateMemoryMB
40
Latency50thMS
0.27
Latency75thMS
0.33
Latency90thMS
0.41
Latency99thMS
1.22
MeanLatencyMS
0.32
ProcessId
2716
RequestsPerMSec
33.317
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
Benchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\pwwp1egt.gen\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios Plaintext --urls https://10.0.0.104:5000 --server HttpSys --kestrelTransport Sockets --protocol https 
ProcessID
2716
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.33624
PromotedMB
0.850704
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6251.1352
DurationMSec
4.339200000000346
PauseDurationMSec
4.684099999999489
SuspendDurationMSec
0.059900000000197906
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
6250.8445
PauseStartRelativeMSec
6250.8445
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4336240
TotalPromoted850704
Depth0
GenerationSize02622128
TotalPromotedSize0850704
GenerationSize1861272
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4744560
TotalPromotedSize40
FinalizationPromotedSize29770
FinalizationPromotedCount19
PinnedObjectCount6
SinkBlockCount3
GCHandleCount555
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure20
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
0.6296717893843514
AllocRateMBSec
0
HeapSizePeakMB
2.730408
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.730408
GenSizeBeforeMB
[ 2.622128, 0, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
0.07487936351213373
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
4.022424
PromotedMB
0.811144
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6273.2279
DurationMSec
2.767300000000432
PauseDurationMSec
2.8370999999997366
SuspendDurationMSec
0.01069999999981519
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
17.69680000000062
PauseStartRelativeMSec
6273.1723
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4022424
TotalPromoted811144
Depth1
GenerationSize02336712
TotalPromotedSize082824
GenerationSize183952
TotalPromotedSize1728320
GenerationSize2728320
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4765160
TotalPromotedSize40
FinalizationPromotedSize568
FinalizationPromotedCount19
PinnedObjectCount2
SinkBlockCount3
GCHandleCount550
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure20
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.488632
RatioPeakAfter
0.8932802708018848
AllocRateMBSec
140.62610189412283
HeapSizePeakMB
3.5931520000000003
UserAllocated
[ 2.488632, 0, 0, 0, 0 ]
HeapSizeBeforeMB
3.5931520000000003
GenSizeBeforeMB
[ 2.6236, 0.861272, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
13.816664150500817
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.79672
PromotedMB
0.48072
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6294.1295
DurationMSec
2.32549999999992
PauseDurationMSec
2.4880000000002838
SuspendDurationMSec
0.12309999999979482
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
17.988500000000386
PauseStartRelativeMSec
6293.9847
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4796720
TotalPromoted480720
Depth0
GenerationSize02611464
TotalPromotedSize0480720
GenerationSize1571136
TotalPromotedSize10
GenerationSize2728320
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4777520
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount6
SinkBlockCount3
GCHandleCount543
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount134
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure20
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.476024
RatioPeakAfter
0.7386380693473875
AllocRateMBSec
137.64482864051737
HeapSizePeakMB
3.5430400000000004
UserAllocated
[ 2.476024, 0, 0, 0, 0 ]
HeapSizeBeforeMB
3.5430400000000004
GenSizeBeforeMB
[ 2.622488, 0.083952, 0.72832, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
12.15051400385907
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
6.955824
PromotedMB
0.105704
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6332.5526
DurationMSec
1.5069000000003143
PauseDurationMSec
1.769999999999527
SuspendDurationMSec
0.15679999999974825
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
35.86840000000029
PauseStartRelativeMSec
6332.3243
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6955824
TotalPromoted105704
Depth1
GenerationSize05235136
TotalPromotedSize0105320
GenerationSize1106248
TotalPromotedSize1384
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4777520
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount10
SinkBlockCount4
GCHandleCount558
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration1
Gen0ReductionCount115
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure20
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.084824
RatioPeakAfter
0.9564048774092042
AllocRateMBSec
141.7633348574221
HeapSizePeakMB
6.652584
UserAllocated
[ 5.084792, 0, 0, 3.200000000000425E-05, 0 ]
HeapSizeBeforeMB
6.652584
GenSizeBeforeMB
[ 5.244848, 0.571136, 0.72832, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
4.702644108143639
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
7.387512
PromotedMB
0.482016
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
5
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6370.013
DurationMSec
1.761000000000422
PauseDurationMSec
1.945600000000013
SuspendDurationMSec
0.12860000000000582
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
35.784599999999955
PauseStartRelativeMSec
6369.8453
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize7387512
TotalPromoted482016
Depth0
GenerationSize05177752
TotalPromotedSize0482016
GenerationSize1595320
TotalPromotedSize10
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4777520
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount4
GCHandleCount546
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount39
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure21
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.048208000000001
RatioPeakAfter
0.8424216434436924
AllocRateMBSec
141.0720812863636
HeapSizePeakMB
6.223399999999999
UserAllocated
[ 5.048208000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.223399999999999
GenSizeBeforeMB
[ 5.280232, 0.10624800000000001, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.156611944808177
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.200688
PromotedMB
0.463016
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6407.1132
DurationMSec
1.671900000000278
PauseDurationMSec
1.8416000000006534
SuspendDurationMSec
0.10920000000078289
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
35.18109999999979
PauseStartRelativeMSec
6406.9562
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5200688
TotalPromoted463016
Depth0
GenerationSize02520536
TotalPromotedSize0463016
GenerationSize11065712
TotalPromotedSize10
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4777520
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount4
GCHandleCount541
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount46
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure20
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
4.96488
RatioPeakAfter
1.2812289450934182
AllocRateMBSec
141.1235009706925
HeapSizePeakMB
6.663272
UserAllocated
[ 4.96488, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.663272
GenSizeBeforeMB
[ 5.231032, 0.5953200000000001, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
4.974245530446541
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
4.355704
PromotedMB
0.099256
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6462.874
DurationMSec
1.4053000000003522
PauseDurationMSec
1.6539999999995416
SuspendDurationMSec
0.14549999999962893
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
53.87630000000081
PauseStartRelativeMSec
6462.6625
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4355704
TotalPromoted99256
Depth1
GenerationSize02640728
TotalPromotedSize099192
GenerationSize1100536
TotalPromotedSize164
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4777520
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount4
GCHandleCount518
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration1
Gen0ReductionCount44
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure21
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.590568
RatioPeakAfter
2.2347542440900483
AllocRateMBSec
140.88881381980363
HeapSizePeakMB
9.733928
UserAllocated
[ 7.590568, 0, 0, 0, 0 ]
HeapSizeBeforeMB
9.733928
GenSizeBeforeMB
[ 7.831296, 1.065712, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.9785540506705908
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.840896
PromotedMB
0.486896
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6518.4887
DurationMSec
1.3537999999998647
PauseDurationMSec
1.516700000000128
SuspendDurationMSec
0.08330000000023574
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
54.063099999999395
PauseStartRelativeMSec
6518.3438
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4840896
TotalPromoted486896
Depth0
GenerationSize02618728
TotalPromotedSize0486896
GenerationSize1595368
TotalPromotedSize10
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4789880
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount4
GCHandleCount496
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount24
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure21
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.483928000000001
RatioPeakAfter
1.8099525377120271
AllocRateMBSec
138.42950182287152
HeapSizePeakMB
8.761792000000002
UserAllocated
[ 7.483928000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
8.761792000000002
GenSizeBeforeMB
[ 7.824336000000001, 0.100536, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.7288691215156247
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
2.690744
PromotedMB
0.459744
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6574.3427
DurationMSec
1.1732999999994718
PauseDurationMSec
1.277100000000246
SuspendDurationMSec
0.03359999999975116
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
54.406299999999646
PauseStartRelativeMSec
6574.25
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize2690744
TotalPromoted459744
Depth0
GenerationSize0584
TotalPromotedSize0459744
GenerationSize11063360
TotalPromotedSize10
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4789880
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount501
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount24
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure21
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.530888000000001
RatioPeakAfter
3.415557927472848
AllocRateMBSec
138.41941098733142
HeapSizePeakMB
9.190392000000001
UserAllocated
[ 7.530888000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
9.190392000000001
GenSizeBeforeMB
[ 7.7581039999999994, 0.595368, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.2935021927544805
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
3.19204
PromotedMB
0.472584
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6630.4164
DurationMSec
1.2169000000003507
PauseDurationMSec
1.3903999999993175
SuspendDurationMSec
0.06649999999990541
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
54.738900000000285
PauseStartRelativeMSec
6630.256
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3192040
TotalPromoted472584
Depth0
GenerationSize0481280
TotalPromotedSize0472584
GenerationSize11063360
TotalPromotedSize10
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4810480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount509
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount20
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure21
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.565408
RatioPeakAfter
3.032834175010338
AllocRateMBSec
138.20898848898972
HeapSizePeakMB
9.680928
UserAllocated
[ 7.565408, 0, 0, 0, 0 ]
HeapSizeBeforeMB
9.680928
GenSizeBeforeMB
[ 7.780647999999999, 1.06336, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.4771376090550343
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
3.191208
PromotedMB
0.471752
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6684.0964
DurationMSec
1.12079999999969
PauseDurationMSec
1.3319000000001324
SuspendDurationMSec
0.1370999999999185
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
52.264000000000124
PauseStartRelativeMSec
6683.8984
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3191208
TotalPromoted471752
Depth0
GenerationSize0480448
TotalPromotedSize0471752
GenerationSize11063360
TotalPromotedSize10
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4810480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount513
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount21
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure21
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.54384
RatioPeakAfter
3.1835969325722417
AllocRateMBSec
144.34103780805108
HeapSizePeakMB
10.159519999999999
UserAllocated
[ 7.54384, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.159519999999999
GenSizeBeforeMB
[ 8.259239999999998, 1.06336, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.4850781496348153
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
3.187072
PromotedMB
0.467688
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6736.3363
DurationMSec
1.1023000000004686
PauseDurationMSec
1.3252000000002226
SuspendDurationMSec
0.15820000000076107
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
50.90569999999934
PauseStartRelativeMSec
6736.1239
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3187072
TotalPromoted467688
Depth0
GenerationSize0476312
TotalPromotedSize0467688
GenerationSize11063360
TotalPromotedSize10
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4810480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount514
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount20
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure21
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.513223999999999
RatioPeakAfter
3.165302823406562
AllocRateMBSec
147.59101633019674
HeapSizePeakMB
10.088047999999999
UserAllocated
[ 7.513223999999999, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.088047999999999
GenSizeBeforeMB
[ 8.187767999999998, 1.06336, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.537195414975108
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
3.184792
PromotedMB
0.465456
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6788.6134
DurationMSec
1.0630000000001019
PauseDurationMSec
1.1711999999997715
SuspendDurationMSec
0.023299999999835563
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
51.07790000000023
PauseStartRelativeMSec
6788.5176
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3184792
TotalPromoted465456
Depth0
GenerationSize0474032
TotalPromotedSize0465456
GenerationSize11063360
TotalPromotedSize10
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4810480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount522
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount20
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure21
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.429504
RatioPeakAfter
3.155305589815599
AllocRateMBSec
145.4543745925335
HeapSizePeakMB
10.048992
UserAllocated
[ 7.429504, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.048992
GenSizeBeforeMB
[ 8.148712, 1.06336, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.2415697112481774
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.718344
PromotedMB
0.469464
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6841.1492
DurationMSec
1.0879000000004453
PauseDurationMSec
1.30829999999969
SuspendDurationMSec
0.1592000000000553
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
51.26549999999952
PauseStartRelativeMSec
6840.9433
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5718344
TotalPromoted469464
Depth0
GenerationSize03007584
TotalPromotedSize0469464
GenerationSize11063360
TotalPromotedSize10
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4810480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount4
GCHandleCount559
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount19
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure21
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.495623999999999
RatioPeakAfter
1.7663799169829588
AllocRateMBSec
146.21185787713122
HeapSizePeakMB
10.100768
UserAllocated
[ 7.495623999999999, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.100768
GenSizeBeforeMB
[ 8.200488, 1.06336, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.488501877360415
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.794968
PromotedMB
0.470304
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6894.3176
DurationMSec
1.0691999999999098
PauseDurationMSec
1.1502000000000407
SuspendDurationMSec
0.011700000000018917
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
52.01119999999992
PauseStartRelativeMSec
6894.2494
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5794968
TotalPromoted470304
Depth0
GenerationSize03084208
TotalPromotedSize0470304
GenerationSize11063360
TotalPromotedSize10
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4810480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount4
GCHandleCount588
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount20
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure21
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.602008
RatioPeakAfter
1.7648014622341317
AllocRateMBSec
146.16098071184692
HeapSizePeakMB
10.226968000000001
UserAllocated
[ 7.602008, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.226968000000001
GenSizeBeforeMB
[ 8.326688, 1.06336, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.163599905194449
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
8.05408
PromotedMB
0.466168
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6945.9316
DurationMSec
1.040299999999661
PauseDurationMSec
1.2062999999998283
SuspendDurationMSec
0.08909999999923457
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
50.39590000000044
PauseStartRelativeMSec
6945.7839
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8054080
TotalPromoted466168
Depth0
GenerationSize05343320
TotalPromotedSize0466168
GenerationSize11063360
TotalPromotedSize10
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4810480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount4
GCHandleCount616
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount19
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure20
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.484736
RatioPeakAfter
1.2652230918987641
AllocRateMBSec
148.51874854898782
HeapSizePeakMB
10.190208
UserAllocated
[ 7.484736, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.190208
GenSizeBeforeMB
[ 8.289928, 1.06336, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.337691028676727
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.804648
PromotedMB
0.468576
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6997.9197
DurationMSec
1.0516999999999825
PauseDurationMSec
1.2566999999999098
SuspendDurationMSec
0.012200000000120781
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
50.75770000000011
PauseStartRelativeMSec
6997.7308
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5804648
TotalPromoted468576
Depth0
GenerationSize03093888
TotalPromotedSize0468576
GenerationSize11063360
TotalPromotedSize10
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4810480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount4
GCHandleCount633
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount19
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure20
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.582008
RatioPeakAfter
1.753696692719352
AllocRateMBSec
149.37650839182987
HeapSizePeakMB
10.179592000000001
UserAllocated
[ 7.582008, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.179592000000001
GenSizeBeforeMB
[ 8.279312000000001, 1.06336, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.416061705988936
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
3.188552
PromotedMB
0.469144
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7050.4739
DurationMSec
1.0561999999999898
PauseDurationMSec
1.170600000000377
SuspendDurationMSec
0.038800000000264845
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
51.40020000000004
PauseStartRelativeMSec
7050.373
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3188552
TotalPromoted469144
Depth0
GenerationSize0477792
TotalPromotedSize0469144
GenerationSize11063360
TotalPromotedSize10
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4810480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount650
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount19
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure20
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.555439999999999
RatioPeakAfter
3.191296864532866
AllocRateMBSec
146.99242415399146
HeapSizePeakMB
10.175616
UserAllocated
[ 7.555439999999999, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.175616
GenSizeBeforeMB
[ 8.275336, 1.06336, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.2267114063327313
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
3.185856
PromotedMB
0.466496
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7102.6418
DurationMSec
0.9825000000000728
PauseDurationMSec
1.1427999999996246
SuspendDurationMSec
0.07879999999931897
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
50.96309999999994
PauseStartRelativeMSec
7102.4943
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3185856
TotalPromoted466496
Depth0
GenerationSize0475096
TotalPromotedSize0466496
GenerationSize11063360
TotalPromotedSize10
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4810480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount665
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount19
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure21
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.546984
RatioPeakAfter
3.1830340103256396
AllocRateMBSec
148.08722389336617
HeapSizePeakMB
10.140688
UserAllocated
[ 7.546984, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.140688
GenSizeBeforeMB
[ 8.240408, 1.06336, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.1932257191596998
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.801384
PromotedMB
0.473512
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7157.3895
DurationMSec
1.108499999999367
PauseDurationMSec
1.2973000000001775
SuspendDurationMSec
0.10609999999996944
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
53.590799999999945
PauseStartRelativeMSec
7157.2162
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5801384
TotalPromoted473512
Depth0
GenerationSize03090624
TotalPromotedSize0473512
GenerationSize11063360
TotalPromotedSize10
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4810480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount4
GCHandleCount680
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount18
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure20
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.603096000000001
RatioPeakAfter
1.762638708280645
AllocRateMBSec
141.8731573329752
HeapSizePeakMB
10.225744
UserAllocated
[ 7.603096000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.225744
GenSizeBeforeMB
[ 8.325464, 1.06336, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.3635359941411247
(581 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.1680963394342407
MeanSizeAfterMB
4.938486429284524
MeanSizePeakMB
9.157643594009992
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
601
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
13.638899999998102
TotalPauseTimeMSec
702.0258999999787
MaxSuspendDurationMSec
12.583200000000943
MaxSizePeakMB
10.555792000000002
MaxAllocRateMBSec
163.33965374738528
TotalAllocatedMB
4507.167111999997
TotalCpuMSec
0
TotalPromotedMB
208.54948799999974
TotalSizeAfterMB
2968.030343999999
TotalSizePeakMB
5503.743800000005
FinalizedObjects(empty)
ProcessDuration
30080.043700000002
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.326253676470597
MeanSizeAfterMB
5.147204882352945
MeanSizePeakMB
8.959283607843135
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
408
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
13.638899999998102
TotalPauseTimeMSec
541.1115000000036
MaxSuspendDurationMSec
12.583200000000943
MaxSizePeakMB
10.260968
MaxAllocRateMBSec
161.12784251375672
TotalAllocatedMB
3062.8690799999995
TotalCpuMSec
0
TotalPromotedMB
191.05388799999983
TotalSizeAfterMB
2100.0595920000014
TotalSizePeakMB
3655.3877119999993
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
0.8337533678755187
MeanSizeAfterMB
4.497257782383419
MeanSizePeakMB
9.576974549222799
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
193
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
2.8370999999997366
TotalPauseTimeMSec
160.9143999999751
MaxSuspendDurationMSec
0.1882000000005064
MaxSizePeakMB
10.555792000000002
MaxAllocRateMBSec
163.33965374738528
TotalAllocatedMB
1444.2980320000006
TotalCpuMSec
0
TotalPromotedMB
17.495600000000003
TotalSizeAfterMB
867.9707519999998
TotalSizePeakMB
1848.3560880000002
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
NaN
MeanSizeAfterMB
NaN
MeanSizePeakMB
NaN
MeanCpuMSec
NaN
Interesting
False
GCVersionInfoMismatch
False
Count
0
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
0
TotalPauseTimeMSec
0
MaxSuspendDurationMSec
0
MaxSizePeakMB
0
MaxAllocRateMBSec
0
TotalAllocatedMB
0
TotalCpuMSec
0
TotalPromotedMB
0
TotalSizeAfterMB
0
TotalSizePeakMB
0
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking(empty)
BGCs(empty)
GCThreadIDsToHeapNumbers(empty)
DurationMSec
38030.068100000004
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="23601"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionCloseHttpsHttpSys_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 4:08:59 PM"\\r\\n SessionEndTime="8/21/2023 4:09:42 PM"\\r\\n SessionDura...
Events
[ <Event MSec= "0.0000" PID="11640" PName="PerfView" TID="11208" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 4:09:40 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="99" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 4:08:59 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="11640" PName="PerfView" TID="11208" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "4.4933" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="11640" PName="PerfView" TID="11208" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "4.4609" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "4.4933" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "4.5110" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "4.5110" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", + "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337145628404.5
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="11640" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="156.4164" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmpE14C.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", + "
Count127
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="11208" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337145628404.5" /> ... (more) ]
Count1674
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", + "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="123" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1512" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="132" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="27" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="13" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", + " ... (more) ]
Count77
(values)
indexvalue
0\r\n", + "
1\r\n", + "
2\r\n", + "
3\r\n", + "
4\r\n", + "
5\r\n", + "
6\r\n", + "
7\r\n", + "
8\r\n", + "
9\r\n", + "
10\r\n", + "
11\r\n", + "
12\r\n", + "
13\r\n", + "
14\r\n", + "
15\r\n", + "
16\r\n", + "
17\r\n", + "
18\r\n", + "
19\r\n", + "
... (more)
MaxEventIndex23601
EventCount
23601
Size
5232244
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionCloseHttpsHttpSys_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", + "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", + "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", + "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", + "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", + " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", + " at lambda_method760(Closure, TraceLog)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 16:08:59Z
SessionEndTime2023-08-21 16:09:42Z
SessionEndTimeRelativeMSec
43020.8852
SessionDuration00:00:43.0208852
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [112, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [121, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [114, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [110, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [105, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [104, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [103, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [102, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [98, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [100, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [123, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [124, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionCloseHttpsHttpSys_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
1GC.Analysis.API.GCProcessData
Benchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\pwwp1egt.gen\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios Plaintext --urls https://10.0.0.104:5000 --server HttpSys --kestrelTransport Sockets --protocol https 
NumberOfHeapCountSwitches
2
Benchmark
ConnectionCloseHttpsHttpSys
Id
datas_3 | ConnectionCloseHttpsHttpSys
TotalSuspensionTimeMSec
43.99279999999635
PercentPauseTimeInGC
2.3338593088545903
PercentTimeInGC
2.1876068617546003
MeanHeapSizeBeforeMB
9.157643594009992
MaxHeapSizeMB
10.555792000000002
TotalAllocationsMB
4507.167111999997
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionCloseHttpsHttpSys_Windows.gc.etl.zip
ProcessName
Benchmarks
datas_3 | ConnectionCloseHttpSys
Submission#4+LoadInfo
WorkingSetMB
69
PrivateMemoryMB
46
Latency50thMS
0.14
Latency75thMS
0.18
Latency90thMS
0.23
Latency99thMS
1.25
MeanLatencyMS
0.23
ProcessId
10876
RequestsPerMSec
105.968
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
Benchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\rxgapyjw.hah\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios Plaintext --urls http://10.0.0.104:5000 --server HttpSys --kestrelTransport Sockets --protocol http 
ProcessID
10876
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.356048
PromotedMB
0.847648
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6025.4815
DurationMSec
4.605199999999968
PauseDurationMSec
4.9409999999998035
SuspendDurationMSec
0.07909999999992579
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
6025.202
PauseStartRelativeMSec
6025.202
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4356048
TotalPromoted847648
Depth0
GenerationSize02620496
TotalPromotedSize0847648
GenerationSize1857992
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4769280
TotalPromotedSize40
FinalizationPromotedSize29770
FinalizationPromotedCount19
PinnedObjectCount10
SinkBlockCount3
GCHandleCount579
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
0.6267313858800454
AllocRateMBSec
0
HeapSizePeakMB
2.7300720000000003
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.7300720000000003
GenSizeBeforeMB
[ 2.621792, 0, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
0.08193835535906534
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
4.233072
PromotedMB
0.817176
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6038.2973
DurationMSec
2.9625999999998385
PauseDurationMSec
3.1833999999998923
SuspendDurationMSec
0.12139999999999418
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
8.010299999999916
PauseStartRelativeMSec
6038.0979
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4233072
TotalPromoted817176
Depth1
GenerationSize02526504
TotalPromotedSize0100904
GenerationSize1100376
TotalPromotedSize1716272
GenerationSize2716272
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4781640
TotalPromotedSize40
FinalizationPromotedSize568
FinalizationPromotedCount19
PinnedObjectCount10
SinkBlockCount4
GCHandleCount591
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.490248
RatioPeakAfter
0.8481499960312511
AllocRateMBSec
310.88074104590663
HeapSizePeakMB
3.59028
UserAllocated
[ 2.490248, 0, 0, 0, 0 ]
HeapSizeBeforeMB
3.59028
GenSizeBeforeMB
[ 2.624008, 0.857992, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
28.43921134209374
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.805432
PromotedMB
0.479296
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6048.5983
DurationMSec
2.1964000000007218
PauseDurationMSec
2.3486999999995533
SuspendDurationMSec
0.10840000000007421
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
7.201900000000023
PauseStartRelativeMSec
6048.4628
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4805432
TotalPromoted479296
Depth0
GenerationSize02614488
TotalPromotedSize0479296
GenerationSize1584752
TotalPromotedSize10
GenerationSize2716272
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4781640
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount4
GCHandleCount562
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount6266
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.477848
RatioPeakAfter
0.7386490954403268
AllocRateMBSec
344.05476332634333
HeapSizePeakMB
3.549528
UserAllocated
[ 2.477848, 0, 0, 0, 0 ]
HeapSizeBeforeMB
3.549528
GenSizeBeforeMB
[ 2.6246, 0.100376, 0.716272, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
24.592172219542828
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
8.460568
PromotedMB
0.103424
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6086.4485
DurationMSec
1.274199999999837
PauseDurationMSec
1.475100000000566
SuspendDurationMSec
0.05830000000059954
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
35.48829999999998
PauseStartRelativeMSec
6086.284
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8460568
TotalPromoted103424
Depth1
GenerationSize06741792
TotalPromotedSize0100944
GenerationSize1101864
TotalPromotedSize12480
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4789880
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount6
SinkBlockCount4
GCHandleCount614
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration1
Gen0ReductionCount243
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.495375999999998
RatioPeakAfter
1.6728664080236695
AllocRateMBSec
352.0984662550758
HeapSizePeakMB
14.153400000000001
UserAllocated
[ 12.495344, 0, 0, 3.200000000000425E-05, 0 ]
HeapSizeBeforeMB
14.153400000000001
GenSizeBeforeMB
[ 12.744096, 0.584752, 0.716272, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.9907043183271673
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.812536
PromotedMB
0.463712
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
5
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6122.4935
DurationMSec
1.0561999999999898
PauseDurationMSec
1.2611000000006243
SuspendDurationMSec
0.10429999999996653
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.585399999999936
PauseStartRelativeMSec
6122.3092
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11812536
TotalPromoted463712
Depth0
GenerationSize09626736
TotalPromotedSize0463712
GenerationSize1568888
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4789880
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount10
SinkBlockCount4
GCHandleCount615
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount1033
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.678648
RatioPeakAfter
1.1750289692238824
AllocRateMBSec
366.5896013924958
HeapSizePeakMB
13.880072000000002
UserAllocated
[ 12.678648, 0, 0, 0, 0 ]
HeapSizeBeforeMB
13.880072000000002
GenSizeBeforeMB
[ 12.951176, 0.101864, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.518056156111767
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
12.221488
PromotedMB
0.451336
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6158.5959
DurationMSec
1.0823999999993248
PauseDurationMSec
1.3438000000005559
SuspendDurationMSec
0.16660000000047148
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.80439999999999
PauseStartRelativeMSec
6158.3556
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize12221488
TotalPromoted451336
Depth0
GenerationSize09581136
TotalPromotedSize0451336
GenerationSize11023440
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4789880
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount10
SinkBlockCount4
GCHandleCount627
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount28
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.62916
RatioPeakAfter
1.1715287041970668
AllocRateMBSec
362.861017572491
HeapSizePeakMB
14.317824000000002
UserAllocated
[ 12.62916, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.317824000000002
GenSizeBeforeMB
[ 12.921904000000001, 0.568888, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.717474175755738
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
3.116488
PromotedMB
0.465704
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6195.7115
DurationMSec
0.9928999999992811
PauseDurationMSec
1.217899999999645
SuspendDurationMSec
0.13119999999980791
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
35.82390000000032
PauseStartRelativeMSec
6195.5036
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3116488
TotalPromoted465704
Depth0
GenerationSize0584
TotalPromotedSize0465704
GenerationSize11494872
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4794000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount628
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount29
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.702832
RatioPeakAfter
4.752580468784093
AllocRateMBSec
354.59098534776746
HeapSizePeakMB
14.811360000000002
UserAllocated
[ 12.702832, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.811360000000002
GenSizeBeforeMB
[ 12.960888, 1.02344, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.2879071751363216
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
8.584416
PromotedMB
0.49548
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6230.9754
DurationMSec
1.0477000000000771
PauseDurationMSec
1.2559000000001106
SuspendDurationMSec
0.09860000000026048
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.08320000000003
PauseStartRelativeMSec
6230.7887
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8584416
TotalPromoted495480
Depth0
GenerationSize05468512
TotalPromotedSize0495480
GenerationSize11494872
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4794000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount10
SinkBlockCount4
GCHandleCount662
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount26
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.607119999999998
RatioPeakAfter
1.7717873877500814
AllocRateMBSec
369.89249835696137
HeapSizePeakMB
15.209760000000001
UserAllocated
[ 12.607119999999998, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.209760000000001
GenSizeBeforeMB
[ 12.887856, 1.494872, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.553853946478845
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.176408
PromotedMB
0.46468
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6266.5041
DurationMSec
0.7299999999995634
PauseDurationMSec
1.011700000000019
SuspendDurationMSec
0.19620000000031723
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.21309999999994
PauseStartRelativeMSec
6266.2381
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6176408
TotalPromoted464680
Depth0
GenerationSize03048144
TotalPromotedSize0464680
GenerationSize11494872
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4806360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount4
GCHandleCount685
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount29
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.683696000000001
RatioPeakAfter
2.5554101995852605
AllocRateMBSec
370.7263007444524
HeapSizePeakMB
15.783256
UserAllocated
[ 12.683696000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.783256
GenSizeBeforeMB
[ 13.461352, 1.494872, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.8721241852331882
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
8.718336
PromotedMB
0.4736
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6301.9359
DurationMSec
0.7701999999999316
PauseDurationMSec
1.1604999999999563
SuspendDurationMSec
0.2798000000002503
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.339500000000044
PauseStartRelativeMSec
6301.5749
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8718336
TotalPromoted473600
Depth0
GenerationSize05590072
TotalPromotedSize0473600
GenerationSize11494872
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4806360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount4
GCHandleCount695
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount20
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.613192
RatioPeakAfter
1.8029165198496595
AllocRateMBSec
367.30855137669397
HeapSizePeakMB
15.718432000000002
UserAllocated
[ 12.613192, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.718432000000002
GenSizeBeforeMB
[ 13.396528, 1.494872, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.269014084506919
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
13.944792
PromotedMB
0.512048
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6337.1346
DurationMSec
1.032999999999447
PauseDurationMSec
1.2839999999996508
SuspendDurationMSec
0.14729999999963184
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.19890000000032
PauseStartRelativeMSec
6336.906
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13944792
TotalPromoted512048
Depth0
GenerationSize010816528
TotalPromotedSize0512048
GenerationSize11494872
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4806360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount10
SinkBlockCount4
GCHandleCount767
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount21
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.660464000000001
RatioPeakAfter
1.1292720608525393
AllocRateMBSec
370.2009128948558
HeapSizePeakMB
15.747464000000003
UserAllocated
[ 12.660464000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.747464000000003
GenSizeBeforeMB
[ 13.42556, 1.494872, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.618644473815984
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.235432
PromotedMB
0.473752
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6372.0325
DurationMSec
0.7903999999998632
PauseDurationMSec
1.012300000000323
SuspendDurationMSec
0.13109999999960564
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
33.657100000000355
PauseStartRelativeMSec
6371.826
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11235432
TotalPromoted473752
Depth0
GenerationSize08107168
TotalPromotedSize0473752
GenerationSize11494872
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4806360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount6
SinkBlockCount4
GCHandleCount718
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount28
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.602151999999998
RatioPeakAfter
1.4067361183797829
AllocRateMBSec
374.427743329041
HeapSizePeakMB
15.805288
UserAllocated
[ 12.602151999999998, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.805288
GenSizeBeforeMB
[ 13.483383999999997, 1.494872, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.919865933648414
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.124632
PromotedMB
0.47292
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6406.3897
DurationMSec
0.8356000000003405
PauseDurationMSec
1.0209999999997308
SuspendDurationMSec
0.09429999999974825
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
33.39140000000043
PauseStartRelativeMSec
6406.2159
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6124632
TotalPromoted472920
Depth0
GenerationSize02996368
TotalPromotedSize0472920
GenerationSize11494872
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4806360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount4
GCHandleCount782
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount22
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.444376
RatioPeakAfter
2.540756734445433
AllocRateMBSec
372.6820678378217
HeapSizePeakMB
15.561200000000001
UserAllocated
[ 12.444376, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.561200000000001
GenSizeBeforeMB
[ 13.239296000000001, 1.494872, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.9669537724765664
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
8.68692
PromotedMB
0.487912
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6442.1829
DurationMSec
0.931800000000294
PauseDurationMSec
1.1000999999996566
SuspendDurationMSec
0.03480000000035943
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.80670000000009
PauseStartRelativeMSec
6442.0333
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8686920
TotalPromoted487912
Depth0
GenerationSize05558656
TotalPromotedSize0487912
GenerationSize11494872
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4806360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount4
GCHandleCount810
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount23
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.687792000000002
RatioPeakAfter
1.8143387990219777
AllocRateMBSec
364.5215432660944
HeapSizePeakMB
15.761016
UserAllocated
[ 12.687792000000002, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.761016
GenSizeBeforeMB
[ 13.439112, 1.494872, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.0637650807080115
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
3.614352
PromotedMB
0.480216
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6476.8363
DurationMSec
0.8517000000001644
PauseDurationMSec
1.0410000000001673
SuspendDurationMSec
0.0826999999999316
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
33.546299999999974
PauseStartRelativeMSec
6476.6622
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3614352
TotalPromoted480216
Depth0
GenerationSize0486088
TotalPromotedSize0480216
GenerationSize11494872
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4806360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount765
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount25
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.594232
RatioPeakAfter
4.338835841113428
AllocRateMBSec
375.42834828282133
HeapSizePeakMB
15.682080000000001
UserAllocated
[ 12.594232, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.682080000000001
GenSizeBeforeMB
[ 13.360176, 1.494872, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.0097752643315987
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.255704
PromotedMB
0.507232
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6511.2777
DurationMSec
0.9681000000000495
PauseDurationMSec
1.1700000000000728
SuspendDurationMSec
0.09259999999994761
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
33.40660000000025
PauseStartRelativeMSec
6511.0957
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6255704
TotalPromoted507232
Depth0
GenerationSize03127440
TotalPromotedSize0507232
GenerationSize11494872
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4806360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount4
GCHandleCount749
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount24
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.32172
RatioPeakAfter
2.462539787688165
AllocRateMBSec
368.84088772876936
HeapSizePeakMB
15.404920000000002
UserAllocated
[ 12.32172, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.404920000000002
GenSizeBeforeMB
[ 13.083016, 1.494872, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.383791350219691
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
16.536664
PromotedMB
0.505552
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6546.4292
DurationMSec
1.0261000000000422
PauseDurationMSec
1.3231000000005224
SuspendDurationMSec
0.19860000000062428
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
33.90849999999955
PauseStartRelativeMSec
6546.1554
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize16536664
TotalPromoted505552
Depth0
GenerationSize013408400
TotalPromotedSize0505552
GenerationSize11494872
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4806360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount16
SinkBlockCount4
GCHandleCount830
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount27
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.688656
RatioPeakAfter
0.958785883295446
AllocRateMBSec
374.2028105047456
HeapSizePeakMB
15.855120000000001
UserAllocated
[ 12.688656, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.855120000000001
GenSizeBeforeMB
[ 13.533216000000001, 1.494872, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.7554354613486747
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.33108
PromotedMB
0.500048
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6582.1774
DurationMSec
0.992300000000796
PauseDurationMSec
1.1536000000005515
SuspendDurationMSec
0.026899999999841384
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.57899999999972
PauseStartRelativeMSec
6582.0354
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11331080
TotalPromoted500048
Depth0
GenerationSize08202816
TotalPromotedSize0500048
GenerationSize11494872
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4806360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount10
SinkBlockCount4
GCHandleCount840
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount28
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.623040000000001
RatioPeakAfter
1.3991908979550052
AllocRateMBSec
365.04930738309673
HeapSizePeakMB
15.854344
UserAllocated
[ 12.623040000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.854344
GenSizeBeforeMB
[ 13.53244, 1.494872, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.228424463936413
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.424192
PromotedMB
0.50492
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6617.4359
DurationMSec
0.9648999999999432
PauseDurationMSec
1.2687999999998283
SuspendDurationMSec
0.20820000000003347
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
33.98580000000038
PauseStartRelativeMSec
6617.1566
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11424192
TotalPromoted504920
Depth0
GenerationSize08295928
TotalPromotedSize0504920
GenerationSize11494872
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4806360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount11
SinkBlockCount4
GCHandleCount848
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount27
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.703008
RatioPeakAfter
1.383955031568097
AllocRateMBSec
373.7739879596731
HeapSizePeakMB
15.810568000000002
UserAllocated
[ 12.703008, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.810568000000002
GenSizeBeforeMB
[ 13.488664, 1.494872, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.5989629722073735
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.19848
PromotedMB
0.470424
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6661.4422
DurationMSec
0.8099999999994907
PauseDurationMSec
1.048399999999674
SuspendDurationMSec
0.1455999999998312
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
42.82290000000012
PauseStartRelativeMSec
6661.2248
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6198480
TotalPromoted470424
Depth0
GenerationSize03057856
TotalPromotedSize0470424
GenerationSize11494872
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4818720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount4
GCHandleCount844
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount27
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.652448000000001
RatioPeakAfter
2.5556459002852314
AllocRateMBSec
295.45985909408205
HeapSizePeakMB
15.841120000000002
UserAllocated
[ 12.652448000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.841120000000002
GenSizeBeforeMB
[ 13.519216, 1.494872, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.389717195523449
(957 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.0847269191403375
MeanSizeAfterMB
8.023492249744113
MeanSizePeakMB
15.60437111975436
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
977
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
15.341199999998935
TotalPauseTimeMSec
1059.7782000001098
MaxSuspendDurationMSec
14.047299999998359
MaxSizePeakMB
15.976064000000003
MaxAllocRateMBSec
433.64134237257053
TotalAllocatedMB
12232.206520000014
TotalCpuMSec
0
TotalPromotedMB
479.4155759999997
TotalSizeAfterMB
7838.951927999998
TotalSizePeakMB
15245.47058400001
FinalizedObjects(empty)
ProcessDuration
30205.791199999996
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.0821740512821634
MeanSizeAfterMB
8.026931577435894
MeanSizePeakMB
15.618181440000008
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
975
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
15.341199999998935
TotalPauseTimeMSec
1055.1197000001093
MaxSuspendDurationMSec
14.047299999998359
MaxSizePeakMB
15.976064000000003
MaxAllocRateMBSec
433.64134237257053
TotalAllocatedMB
12217.220896000013
TotalCpuMSec
0
TotalPromotedMB
478.4949759999997
TotalSizeAfterMB
7826.258287999997
TotalSizePeakMB
15227.726904000008
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
2.329250000000229
MeanSizeAfterMB
6.34682
MeanSizePeakMB
8.87184
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
2
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
3.1833999999998923
TotalPauseTimeMSec
4.658500000000458
MaxSuspendDurationMSec
0.12139999999999418
MaxSizePeakMB
14.153400000000001
MaxAllocRateMBSec
352.0984662550758
TotalAllocatedMB
14.985623999999998
TotalCpuMSec
0
TotalPromotedMB
0.9206
TotalSizeAfterMB
12.69364
TotalSizePeakMB
17.74368
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
NaN
MeanSizeAfterMB
NaN
MeanSizePeakMB
NaN
MeanCpuMSec
NaN
Interesting
False
GCVersionInfoMismatch
False
Count
0
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
0
TotalPauseTimeMSec
0
MaxSuspendDurationMSec
0
MaxSizePeakMB
0
MaxAllocRateMBSec
0
TotalAllocatedMB
0
TotalCpuMSec
0
TotalPromotedMB
0
TotalSizeAfterMB
0
TotalSizePeakMB
0
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking(empty)
BGCs(empty)
GCThreadIDsToHeapNumbers(empty)
DurationMSec
39109.4829
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="52508"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionCloseHttpSys_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 4:16:54 PM"\\r\\n SessionEndTime="8/21/2023 4:17:38 PM"\\r\\n SessionDuration=...
Events
[ <Event MSec= "0.0000" PID="11908" PName="PerfView" TID="10404" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 4:17:35 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="167" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 4:16:54 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="11908" PName="PerfView" TID="10404" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "11.1397" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="11908" PName="PerfView" TID="10404" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "11.1078" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "11.1397" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "11.1601" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "11.1601" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", + "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337145154153.8
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="11908" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="155.9829" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmp1DE8.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", + "
Count127
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="10404" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337145154153.8" /> ... (more) ]
Count1558
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", + "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="120" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1389" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="139" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="27" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="12" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", + " ... (more) ]
Count77
(values)
indexvalue
0\r\n", + "
1\r\n", + "
2\r\n", + "
3\r\n", + "
4\r\n", + "
5\r\n", + "
6\r\n", + "
7\r\n", + "
8\r\n", + "
9\r\n", + "
10\r\n", + "
11\r\n", + "
12\r\n", + "
13\r\n", + "
14\r\n", + "
15\r\n", + "
16\r\n", + "
17\r\n", + "
18\r\n", + "
19\r\n", + "
... (more)
MaxEventIndex52508
EventCount
52508
Size
10271086
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionCloseHttpSys_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", + "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", + "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", + "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", + "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", + " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", + " at lambda_method760(Closure, TraceLog)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 16:16:54Z
SessionEndTime2023-08-21 16:17:38Z
SessionEndTimeRelativeMSec
44086.5455
SessionDuration00:00:44.0865455
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [118, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [112, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [110, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [105, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [104, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [102, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [103, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [100, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [98, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [120, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [121, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionCloseHttpSys_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
Benchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\rxgapyjw.hah\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios Plaintext --urls http://10.0.0.104:5000 --server HttpSys --kestrelTransport Sockets --protocol http 
NumberOfHeapCountSwitches
1
Benchmark
ConnectionCloseHttpSys
Id
datas_3 | ConnectionCloseHttpSys
TotalSuspensionTimeMSec
160.22180000005937
PercentPauseTimeInGC
3.5085265371234837
PercentTimeInGC
2.9780924924093712
MeanHeapSizeBeforeMB
15.60437111975436
MaxHeapSizeMB
15.976064000000003
TotalAllocationsMB
12232.206520000014
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionCloseHttpSys_Windows.gc.etl.zip
ProcessName
Benchmarks
datas_3 | ConnectionCloseHttps
Submission#4+LoadInfo
WorkingSetMB
89
PrivateMemoryMB
56
Latency50thMS
0.18
Latency75thMS
0.23
Latency90thMS
0.46
Latency99thMS
3
MeanLatencyMS
0.38
ProcessId
8756
RequestsPerMSec
8.961
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
Benchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\rdhunxoe.g2x\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios Plaintext --urls https://10.0.0.104:5000 --server Kestrel --kestrelTransport Sockets --protocol https 
ProcessID
8756
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.020816
PromotedMB
1.28324
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5616.6416
DurationMSec
8.359000000000378
PauseDurationMSec
8.655399999999645
SuspendDurationMSec
0.008399999999710417
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
5616.4205
PauseStartRelativeMSec
5616.4205
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4020816
TotalPromoted1283240
Depth0
GenerationSize00
TotalPromotedSize01283240
GenerationSize13711816
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize29770
FinalizationPromotedCount19
PinnedObjectCount78
SinkBlockCount3
GCHandleCount615
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
0.6809941066688951
AllocRateMBSec
0
HeapSizePeakMB
2.7381520000000004
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.7381520000000004
GenSizeBeforeMB
[ 2.629872, 0, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
0.15387170153561208
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
7.29204
PromotedMB
1.952456
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
5651.5483
DurationMSec
4.189499999999498
PauseDurationMSec
4.3585000000002765
SuspendDurationMSec
0.11920000000009168
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
26.400799999999435
PauseStartRelativeMSec
5651.4027
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize7292040
TotalPromoted1952456
Depth1
GenerationSize04979568
TotalPromotedSize0834696
GenerationSize1828304
TotalPromotedSize11117760
GenerationSize21101008
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4274880
TotalPromotedSize40
FinalizationPromotedSize1256
FinalizationPromotedCount21
PinnedObjectCount9
SinkBlockCount4
GCHandleCount718
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.37212
RatioPeakAfter
0.8833928502860653
AllocRateMBSec
89.8503075664393
HeapSizePeakMB
6.441736
UserAllocated
[ 2.37212, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.441736
GenSizeBeforeMB
[ 2.62164, 3.711816, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
14.169698270117712
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.327336
PromotedMB
0.125032
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5675.7743
DurationMSec
1.6611000000002605
PauseDurationMSec
1.7201999999997497
SuspendDurationMSec
0.026899999999841384
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
19.991299999999683
PauseStartRelativeMSec
5675.7302
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4327336
TotalPromoted125032
Depth0
GenerationSize02010744
TotalPromotedSize0125032
GenerationSize1828304
TotalPromotedSize10
GenerationSize21101008
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4279000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount3
GCHandleCount708
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount2008136
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.54556
RatioPeakAfter
1.6215888944144852
AllocRateMBSec
127.33339002466275
HeapSizePeakMB
7.0171600000000005
UserAllocated
[ 2.54556, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.0171600000000005
GenSizeBeforeMB
[ 4.979568, 0.828304, 1.101008, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
7.922990120442138
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
7.371464
PromotedMB
0.8302
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
5716.6287
DurationMSec
2.1138999999993757
PauseDurationMSec
2.237099999999373
SuspendDurationMSec
0.0510999999996784
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
39.10159999999996
PauseStartRelativeMSec
5716.5379
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize7371464
TotalPromoted830200
Depth1
GenerationSize05052336
TotalPromotedSize076200
GenerationSize176840
TotalPromotedSize1754000
GenerationSize21855008
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4279000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount4
GCHandleCount695
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration1
Gen0ReductionCount5076
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
4.878704
RatioPeakAfter
0.9721976530035283
AllocRateMBSec
124.76993268817655
HeapSizePeakMB
7.16652
UserAllocated
[ 4.878672, 0, 0, 3.200000000000425E-05, 0 ]
HeapSizeBeforeMB
7.16652
GenSizeBeforeMB
[ 5.128928, 0.828304, 1.101008, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.411636069831438
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.987872
PromotedMB
0.09076
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
5
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5759.1908
DurationMSec
1.5717999999997119
PauseDurationMSec
1.7031000000006316
SuspendDurationMSec
0.08470000000033906
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
40.330299999999625
PauseStartRelativeMSec
5759.074
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4987872
TotalPromoted90760
Depth0
GenerationSize02577072
TotalPromotedSize090760
GenerationSize1168512
TotalPromotedSize10
GenerationSize21855008
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4279000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount7
SinkBlockCount4
GCHandleCount708
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount1050
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.085088
RatioPeakAfter
1.4768109526467397
AllocRateMBSec
126.08604448764446
HeapSizePeakMB
7.366143999999999
UserAllocated
[ 5.085088, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.366143999999999
GenSizeBeforeMB
[ 5.326016, 0.07684, 1.855008, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
4.051777871884314
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
7.593328
PromotedMB
0.111512
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5800.6498
DurationMSec
1.7076999999999316
PauseDurationMSec
1.8524999999999636
SuspendDurationMSec
0.09069999999974243
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
39.759500000000116
PauseStartRelativeMSec
5800.5233
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize7593328
TotalPromoted111512
Depth0
GenerationSize05069776
TotalPromotedSize0111512
GenerationSize1281264
TotalPromotedSize10
GenerationSize21855008
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4279000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount4
GCHandleCount718
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount37
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.058592
RatioPeakAfter
0.965379080160899
AllocRateMBSec
127.22976898602812
HeapSizePeakMB
7.3304399999999985
UserAllocated
[ 5.058592, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.3304399999999985
GenSizeBeforeMB
[ 5.198639999999999, 0.168512, 1.855008, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
4.45184081514938
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
6.933048
PromotedMB
0.101232
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
5859.8743
DurationMSec
1.4501000000000204
PauseDurationMSec
1.623000000000502
SuspendDurationMSec
0.07920000000012806
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
57.376500000000306
PauseStartRelativeMSec
5859.7351
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6933048
TotalPromoted101232
Depth1
GenerationSize04589072
TotalPromotedSize074784
GenerationSize175240
TotalPromotedSize126448
GenerationSize21881456
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4279000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount6
SinkBlockCount7
GCHandleCount747
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration1
Gen0ReductionCount40
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.228648
RatioPeakAfter
1.3883186731146242
AllocRateMBSec
125.98621386804635
HeapSizePeakMB
9.62528
UserAllocated
[ 7.228648, 0, 0, 0, 0 ]
HeapSizeBeforeMB
9.62528
GenSizeBeforeMB
[ 7.3807279999999995, 0.28126399999999996, 1.855008, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.750870770092085
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
7.584624
PromotedMB
0.119312
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5921.9526
DurationMSec
1.0476000000007843
PauseDurationMSec
1.1833000000005995
SuspendDurationMSec
0.07120000000031723
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
60.50720000000001
PauseStartRelativeMSec
5921.8326
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize7584624
TotalPromoted119312
Depth0
GenerationSize05120576
TotalPromotedSize0119312
GenerationSize1195312
TotalPromotedSize10
GenerationSize21881456
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4279000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount5
GCHandleCount798
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount24
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.64376
RatioPeakAfter
1.2984227036172127
AllocRateMBSec
126.32810640717136
HeapSizePeakMB
9.848047999999999
UserAllocated
[ 7.64376, 0, 0, 0, 0 ]
HeapSizeBeforeMB
9.848047999999999
GenSizeBeforeMB
[ 7.783071999999999, 0.07524, 1.881456, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.918123536039727
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
7.661392
PromotedMB
0.073936
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5984.0767
DurationMSec
0.9446000000007189
PauseDurationMSec
1.0756000000001222
SuspendDurationMSec
0.06500000000050932
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
60.959899999999834
PauseStartRelativeMSec
5983.9612
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize7661392
TotalPromoted73936
Depth0
GenerationSize05122816
TotalPromotedSize073936
GenerationSize1269840
TotalPromotedSize10
GenerationSize21881456
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4279000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount5
GCHandleCount847
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount16
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.630912
RatioPeakAfter
1.302241681407243
AllocRateMBSec
125.17920797114203
HeapSizePeakMB
9.976984000000002
UserAllocated
[ 7.630912, 0, 0, 0, 0 ]
HeapSizeBeforeMB
9.976984000000002
GenSizeBeforeMB
[ 7.791936, 0.19531199999999999, 1.881456, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.7338459430489366
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
7.617952
PromotedMB
0.084896
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6045.0597
DurationMSec
0.9542000000001281
PauseDurationMSec
1.0498999999999796
SuspendDurationMSec
0.010000000000218279
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
59.95640000000003
PauseStartRelativeMSec
6044.9788
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize7617952
TotalPromoted84896
Depth0
GenerationSize04993720
TotalPromotedSize084896
GenerationSize1355496
TotalPromotedSize10
GenerationSize21881456
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4279000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount5
GCHandleCount899
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount14
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.663384
RatioPeakAfter
1.3229308874616172
AllocRateMBSec
127.81594625427805
HeapSizePeakMB
10.078024000000001
UserAllocated
[ 7.663384, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.078024000000001
GenSizeBeforeMB
[ 7.818448, 0.26983999999999997, 1.881456, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.7209698014794856
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
9.6406
PromotedMB
0.085408
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6105.7822
DurationMSec
1.0703000000003158
PauseDurationMSec
1.1752999999998792
SuspendDurationMSec
0.03179999999974825
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
59.67910000000029
PauseStartRelativeMSec
6105.694
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9640600
TotalPromoted85408
Depth0
GenerationSize06930584
TotalPromotedSize085408
GenerationSize1441280
TotalPromotedSize10
GenerationSize21881456
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4279000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount8
SinkBlockCount4
GCHandleCount947
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount15
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.64912
RatioPeakAfter
1.0521677074041038
AllocRateMBSec
128.17083367544018
HeapSizePeakMB
10.143528000000002
UserAllocated
[ 7.64912, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.143528000000002
GenSizeBeforeMB
[ 7.798296000000001, 0.35549600000000003, 1.881456, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.9313311773674147
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
7.959496
PromotedMB
0.078328
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6168.0517
DurationMSec
1.0083999999997104
PauseDurationMSec
1.11200000000008
SuspendDurationMSec
0.03920000000016444
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
61.110899999999674
PauseStartRelativeMSec
6167.9645
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize7959496
TotalPromoted78328
Depth0
GenerationSize05170408
TotalPromotedSize078328
GenerationSize1520352
TotalPromotedSize10
GenerationSize21881456
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4279000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount3
GCHandleCount987
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount17
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.678232000000001
RatioPeakAfter
1.2879498902945616
AllocRateMBSec
125.64423040734209
HeapSizePeakMB
10.251432000000001
UserAllocated
[ 7.678232000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.251432000000001
GenSizeBeforeMB
[ 7.820416, 0.44128, 1.881456, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.787123390263206
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
8.02464
PromotedMB
0.0956
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6227.284
DurationMSec
1.1020000000007713
PauseDurationMSec
1.2866999999996551
SuspendDurationMSec
0.10089999999945576
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
58.05580000000009
PauseStartRelativeMSec
6227.117
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8024640
TotalPromoted95600
Depth0
GenerationSize05139192
TotalPromotedSize095600
GenerationSize1616712
TotalPromotedSize10
GenerationSize21881456
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4279000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount8
GCHandleCount1031
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount15
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.622935999999999
RatioPeakAfter
1.2886070901623004
AllocRateMBSec
131.30360790825358
HeapSizePeakMB
10.340608000000001
UserAllocated
[ 7.622935999999999, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.340608000000001
GenSizeBeforeMB
[ 7.83052, 0.520352, 1.881456, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.1682605215480653
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.481232
PromotedMB
0.099104
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6284.4374
DurationMSec
1.0585000000000946
PauseDurationMSec
1.1871000000001004
SuspendDurationMSec
0.06040000000029977
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
55.9384
PauseStartRelativeMSec
6284.3255
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5481232
TotalPromoted99104
Depth0
GenerationSize02479304
TotalPromotedSize099104
GenerationSize1716712
TotalPromotedSize10
GenerationSize21881456
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4295480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount4
GCHandleCount1092
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount18
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.524176
RatioPeakAfter
1.876982401036847
AllocRateMBSec
134.5082447835476
HeapSizePeakMB
10.288176
UserAllocated
[ 7.524176, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.288176
GenSizeBeforeMB
[ 7.681728, 0.6167119999999999, 1.881456, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.07805620957383
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.79184
PromotedMB
0.086848
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6343.4412
DurationMSec
0.9789999999993597
PauseDurationMSec
1.0523000000002867
SuspendDurationMSec
0.008800000000519503
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
57.884799999999814
PauseStartRelativeMSec
6343.3817
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10791840
TotalPromoted86848
Depth0
GenerationSize07702424
TotalPromotedSize086848
GenerationSize1804200
TotalPromotedSize10
GenerationSize21881456
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4295480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount4
GCHandleCount1133
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount18
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.62552
RatioPeakAfter
0.9719469525122685
AllocRateMBSec
131.73613798441082
HeapSizePeakMB
10.489096
UserAllocated
[ 7.62552, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.489096
GenSizeBeforeMB
[ 7.782648, 0.716712, 1.881456, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.7854628069590883
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.887512
PromotedMB
0.09316
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6401.586
DurationMSec
1.1484999999993306
PauseDurationMSec
1.3624999999992724
SuspendDurationMSec
0.14589999999952852
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
56.96780000000035
PauseStartRelativeMSec
6401.3891
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10887512
TotalPromoted93160
Depth0
GenerationSize07798096
TotalPromotedSize093160
GenerationSize1804200
TotalPromotedSize10
GenerationSize21881456
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4295480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount4
GCHandleCount1184
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount16
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.696488
RatioPeakAfter
0.9780239966670072
AllocRateMBSec
135.1024262829169
HeapSizePeakMB
10.648248
UserAllocated
[ 7.696488, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.648248
GenSizeBeforeMB
[ 7.854312, 0.8042, 1.881456, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.3358357491720105
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.864472
PromotedMB
0.088056
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6459.1682
DurationMSec
0.9938999999994849
PauseDurationMSec
1.128500000000713
SuspendDurationMSec
0.04150000000026921
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
56.3157999999994
PauseStartRelativeMSec
6459.0515
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10864472
TotalPromoted88056
Depth0
GenerationSize07775056
TotalPromotedSize088056
GenerationSize1804200
TotalPromotedSize10
GenerationSize21881456
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4295480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount5
GCHandleCount1232
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount19
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.596576000000001
RatioPeakAfter
0.9816554361776624
AllocRateMBSec
134.89244581449756
HeapSizePeakMB
10.665168
UserAllocated
[ 7.596576000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.665168
GenSizeBeforeMB
[ 7.871231999999999, 0.8042, 1.881456, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.9645117096051494
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.6798
PromotedMB
0.089856
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6514.5336
DurationMSec
1.0165999999999258
PauseDurationMSec
1.1419999999998254
SuspendDurationMSec
0.05969999999979336
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
54.258600000000115
PauseStartRelativeMSec
6514.4218
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10679800
TotalPromoted89856
Depth0
GenerationSize07590384
TotalPromotedSize089856
GenerationSize1804200
TotalPromotedSize10
GenerationSize21881456
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4295480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount4
GCHandleCount1268
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount17
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.410400000000001
RatioPeakAfter
0.9936283451000956
AllocRateMBSec
136.57558433133153
HeapSizePeakMB
10.611752000000001
UserAllocated
[ 7.410400000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.611752000000001
GenSizeBeforeMB
[ 7.817816, 0.8042, 1.881456, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.0613495160699102
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.74872
PromotedMB
0.075192
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6569.8377
DurationMSec
1.1679000000003725
PauseDurationMSec
1.2689000000000306
SuspendDurationMSec
0.03709999999955471
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
54.198600000000624
PauseStartRelativeMSec
6569.7502
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10748720
TotalPromoted75192
Depth0
GenerationSize07659304
TotalPromotedSize075192
GenerationSize1804200
TotalPromotedSize10
GenerationSize21881456
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4295480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount4
GCHandleCount1310
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount17
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.4972
RatioPeakAfter
0.9872118726694901
AllocRateMBSec
138.32829630285494
HeapSizePeakMB
10.611264000000002
UserAllocated
[ 7.4972, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.611264000000002
GenSizeBeforeMB
[ 7.817328000000001, 0.8042, 1.881456, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.2876459187812963
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.782008
PromotedMB
0.132544
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6626.9285
DurationMSec
1.2372999999997774
PauseDurationMSec
1.3948999999993248
SuspendDurationMSec
0.09149999999954161
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
55.78220000000056
PauseStartRelativeMSec
6626.7888
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5782008
TotalPromoted132544
Depth0
GenerationSize02676112
TotalPromotedSize0132544
GenerationSize1804200
TotalPromotedSize10
GenerationSize21881456
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4311960
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount3
GCHandleCount1365
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount20
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.5920879999999995
RatioPeakAfter
1.8450019439613365
AllocRateMBSec
136.10234089010336
HeapSizePeakMB
10.667816
UserAllocated
[ 7.5920879999999995, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.667816
GenSizeBeforeMB
[ 7.87388, 0.8042, 1.881456, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.439613061871497
(462 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.140151452282048
MeanSizeAfterMB
8.352649344398337
MeanSizePeakMB
11.280890970954369
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
482
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
13.596199999999953
TotalPauseTimeMSec
549.5529999999471
MaxSuspendDurationMSec
0.14710000000195578
MaxSizePeakMB
11.730088000000002
MaxAllocRateMBSec
183.42945306240236
TotalAllocatedMB
3625.835504
TotalCpuMSec
0
TotalPromotedMB
70.039448
TotalSizeAfterMB
4025.976983999998
TotalSizePeakMB
5437.389448000005
FinalizedObjects(empty)
ProcessDuration
30082.624499999998
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.1301344467639811
MeanSizeAfterMB
8.359875640918576
MeanSizePeakMB
11.303039482254707
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
479
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
13.596199999999953
TotalPauseTimeMSec
541.334399999947
MaxSuspendDurationMSec
0.14710000000195578
MaxSizePeakMB
11.730088000000002
MaxAllocRateMBSec
183.42945306240236
TotalAllocatedMB
3611.356032000001
TotalCpuMSec
0
TotalPromotedMB
67.15556000000004
TotalSizeAfterMB
4004.380431999998
TotalSizePeakMB
5414.155912000005
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
2.739533333333384
MeanSizeAfterMB
7.198850666666666
MeanSizePeakMB
7.744512
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
3
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
4.3585000000002765
TotalPauseTimeMSec
8.218600000000151
MaxSuspendDurationMSec
0.11920000000009168
MaxSizePeakMB
9.62528
MaxAllocRateMBSec
125.98621386804635
TotalAllocatedMB
14.479472
TotalCpuMSec
0
TotalPromotedMB
2.8838880000000002
TotalSizeAfterMB
21.596552
TotalSizePeakMB
23.233536
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
NaN
MeanSizeAfterMB
NaN
MeanSizePeakMB
NaN
MeanCpuMSec
NaN
Interesting
False
GCVersionInfoMismatch
False
Count
0
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
0
TotalPauseTimeMSec
0
MaxSuspendDurationMSec
0
MaxSizePeakMB
0
MaxAllocRateMBSec
0
TotalAllocatedMB
0
TotalCpuMSec
0
TotalPromotedMB
0
TotalSizeAfterMB
0
TotalSizePeakMB
0
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking(empty)
BGCs(empty)
GCThreadIDsToHeapNumbers(empty)
DurationMSec
38373.578100000006
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="20325"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionCloseHttps_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 4:24:57 PM"\\r\\n SessionEndTime="8/21/2023 4:25:40 PM"\\r\\n SessionDuration="0...
Events
[ <Event MSec= "0.0000" PID="9312" PName="PerfView" TID="6384" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 4:25:37 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="91" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 4:24:57 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="9312" PName="PerfView" TID="6384" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "11.6455" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="9312" PName="PerfView" TID="6384" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "11.6134" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "11.6455" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "11.6659" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "11.6659" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", + "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337144670503.1
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="9312" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="156.383" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmp7F33.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", + "
Count107
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="6384" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337144670503.1" /> ... (more) ]
Count1479
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", + "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="103" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1254" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="193" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Stop" Count="227" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="27" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="4" StackCount="0"/>\r\n", + " ... (more) ]
Count77
(values)
indexvalue
0\r\n", + "
1\r\n", + "
2\r\n", + "
3\r\n", + "
4\r\n", + "
5\r\n", + "
6\r\n", + "
7\r\n", + "
8\r\n", + "
9\r\n", + "
10\r\n", + "
11\r\n", + "
12\r\n", + "
13\r\n", + "
14\r\n", + "
15\r\n", + "
16\r\n", + "
17\r\n", + "
18\r\n", + "
19\r\n", + "
... (more)
MaxEventIndex20325
EventCount
20325
Size
4587082
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionCloseHttps_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", + "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", + "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", + "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", + "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", + " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", + " at lambda_method760(Closure, TraceLog)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 16:24:57Z
SessionEndTime2023-08-21 16:25:40Z
SessionEndTimeRelativeMSec
42319.657
SessionDuration00:00:42.3196570
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [101, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [103, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [104, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionCloseHttps_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
Benchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\rdhunxoe.g2x\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios Plaintext --urls https://10.0.0.104:5000 --server Kestrel --kestrelTransport Sockets --protocol https 
NumberOfHeapCountSwitches
2
Benchmark
ConnectionCloseHttps
Id
datas_3 | ConnectionCloseHttps
TotalSuspensionTimeMSec
16.31259999998929
PercentPauseTimeInGC
1.826812019010998
PercentTimeInGC
1.7725860321793327
MeanHeapSizeBeforeMB
11.280890970954369
MaxHeapSizeMB
11.730088000000002
TotalAllocationsMB
3625.835504
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionCloseHttps_Windows.gc.etl.zip
ProcessName
Benchmarks
datas_3 | ConnectionClose
Submission#4+LoadInfo
WorkingSetMB
64
PrivateMemoryMB
35
Latency50thMS
0.24
Latency75thMS
1.72
Latency90thMS
1.89
Latency99thMS
3
MeanLatencyMS
0.92
ProcessId
8808
RequestsPerMSec
11.352
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
Benchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\gi2cj4t4.uuc\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios Plaintext --urls http://10.0.0.104:5000 --server Kestrel --kestrelTransport Sockets --protocol http 
ProcessID
8808
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.132352
PromotedMB
0.815448
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6104.0479
DurationMSec
3.90690000000086
PauseDurationMSec
4.215700000000652
SuspendDurationMSec
0.07410000000072614
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
6103.7867
PauseStartRelativeMSec
6103.7867
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1132352
TotalPromoted815448
Depth0
GenerationSize0584
TotalPromotedSize0815448
GenerationSize1826888
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4196600
TotalPromotedSize40
FinalizationPromotedSize29770
FinalizationPromotedCount19
PinnedObjectCount1
SinkBlockCount3
GCHandleCount448
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
2.410826315492003
AllocRateMBSec
0
HeapSizePeakMB
2.7299040000000003
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.7299040000000003
GenSizeBeforeMB
[ 2.621624, 0, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
0.0690192918064448
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
1.719776
PromotedMB
0.784528
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6129.0997
DurationMSec
2.5183999999999287
PauseDurationMSec
2.597899999999754
SuspendDurationMSec
0.05069999999977881
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
21.07220000000052
PauseStartRelativeMSec
6129.028
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1719776
TotalPromoted784528
Depth1
GenerationSize0584
TotalPromotedSize011672
GenerationSize1641592
TotalPromotedSize1772856
GenerationSize2772720
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4196600
TotalPromotedSize40
FinalizationPromotedSize568
FinalizationPromotedCount19
PinnedObjectCount2
SinkBlockCount3
GCHandleCount449
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.562552
RatioPeakAfter
2.0681484100254917
AllocRateMBSec
121.60818519186117
HeapSizePeakMB
3.556752
UserAllocated
[ 2.562552, 0, 0, 0, 0 ]
HeapSizeBeforeMB
3.556752
GenSizeBeforeMB
[ 2.621584, 0.826888, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
10.975450040345093
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2N
HeapSizeAfterMB
1.740464
PromotedMB
0.897512
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
6151.0642
DurationMSec
2.579000000000633
PauseDurationMSec
2.649800000000141
SuspendDurationMSec
0.04650000000037835
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
19.385400000000118
PauseStartRelativeMSec
6151.0044
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1740464
TotalPromoted897512
Depth2
GenerationSize0642176
TotalPromotedSize016344
GenerationSize116504
TotalPromotedSize1200
GenerationSize2772784
TotalPromotedSize2772720
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize184
FinalizationPromotedCount3
PinnedObjectCount2
SinkBlockCount3
GCHandleCount434
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration2
Gen0ReductionCount105
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.543016
RatioPeakAfter
2.38108918081615
AllocRateMBSec
131.18202358475887
HeapSizePeakMB
4.1442
UserAllocated
[ 2.543016, 0, 0, 0, 0 ]
HeapSizeBeforeMB
4.1442
GenSizeBeforeMB
[ 2.621608, 0.641592, 0.77272, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
12.025304966599396
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
1.09428
PromotedMB
0.0118
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6196.6079
DurationMSec
0.8838999999998123
PauseDurationMSec
1.0596999999997934
SuspendDurationMSec
0.0988999999999578
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
42.814800000000105
PauseStartRelativeMSec
6196.4592
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1094280
TotalPromoted11800
Depth1
GenerationSize0584
TotalPromotedSize011760
GenerationSize111872
TotalPromotedSize140
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount3
GCHandleCount432
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration1
Gen0ReductionCount114
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
4.789696
RatioPeakAfter
5.269444749058741
AllocRateMBSec
111.87010099311425
HeapSizePeakMB
5.766247999999999
UserAllocated
[ 4.789664, 0, 0, 3.200000000000425E-05, 0 ]
HeapSizeBeforeMB
5.766247999999999
GenSizeBeforeMB
[ 4.8686799999999995, 0.016504, 0.772784, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.4152981800357742
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.11492
PromotedMB
0.020408
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
5
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6242.6815
DurationMSec
0.6033000000006723
PauseDurationMSec
0.686399999999594
SuspendDurationMSec
0.0500000000001819
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
45.115099999999984
PauseStartRelativeMSec
6242.6079
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1114920
TotalPromoted20408
Depth0
GenerationSize0584
TotalPromotedSize020408
GenerationSize132512
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount435
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount20
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
4.9237280000000005
RatioPeakAfter
5.294069529652353
AllocRateMBSec
109.13702950896713
HeapSizePeakMB
5.902464
UserAllocated
[ 4.9237280000000005, 0, 0, 0, 0 ]
HeapSizeBeforeMB
5.902464
GenSizeBeforeMB
[ 5.009488, 0.011872, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.498640874206304
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.139064
PromotedMB
0.023864
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6288.5681
DurationMSec
0.6415999999999258
PauseDurationMSec
0.7002000000002226
SuspendDurationMSec
0.025300000000243017
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
45.23229999999967
PauseStartRelativeMSec
6288.518
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1139064
TotalPromoted23864
Depth0
GenerationSize0584
TotalPromotedSize023864
GenerationSize156656
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount5
GCHandleCount437
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.132792
RatioPeakAfter
5.387216170469789
AllocRateMBSec
113.47625480022104
HeapSizePeakMB
6.136384
UserAllocated
[ 5.132792, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.136384
GenSizeBeforeMB
[ 5.222768, 0.032512, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.524410820225819
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.158096
PromotedMB
0.018872
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6334.5691
DurationMSec
0.6071000000001732
PauseDurationMSec
0.6882000000005064
SuspendDurationMSec
0.04569999999966967
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
45.28700000000026
PauseStartRelativeMSec
6334.4977
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1158096
TotalPromoted18872
Depth0
GenerationSize0584
TotalPromotedSize018872
GenerationSize175688
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount3
GCHandleCount441
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.0152719999999995
RatioPeakAfter
5.212307097166383
AllocRateMBSec
110.74418707355248
HeapSizePeakMB
6.036352
UserAllocated
[ 5.0152719999999995, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.036352
GenSizeBeforeMB
[ 5.098592, 0.056656, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.4968939776237948
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.177568
PromotedMB
0.019264
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6380.9486
DurationMSec
0.6485000000002401
PauseDurationMSec
0.7622000000001208
SuspendDurationMSec
0.07800000000042928
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
45.66949999999997
PauseStartRelativeMSec
6380.8466
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1177568
TotalPromoted19264
Depth0
GenerationSize0584
TotalPromotedSize019264
GenerationSize195160
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount444
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
4.957952000000001
RatioPeakAfter
5.096510774749314
AllocRateMBSec
108.56155639978549
HeapSizePeakMB
6.001488
UserAllocated
[ 4.957952000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.001488
GenSizeBeforeMB
[ 5.044696, 0.075688, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.6415509231842023
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.206584
PromotedMB
0.028712
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6426.8491
DurationMSec
0.7647999999999229
PauseDurationMSec
0.8046999999996842
SuspendDurationMSec
0.00709999999980937
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
45.21979999999985
PauseStartRelativeMSec
6426.8179
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1206584
TotalPromoted28712
Depth0
GenerationSize0584
TotalPromotedSize028712
GenerationSize1124176
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount3
GCHandleCount446
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.0089760000000005
RatioPeakAfter
5.0415321270628475
AllocRateMBSec
110.76953016156678
HeapSizePeakMB
6.083031999999999
UserAllocated
[ 5.0089760000000005, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.083031999999999
GenSizeBeforeMB
[ 5.106768, 0.09516, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.7484166041992686
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.226912
PromotedMB
0.02012
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6471.9066
DurationMSec
0.7151999999996406
PauseDurationMSec
0.7860000000000582
SuspendDurationMSec
0.02809999999954016
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
44.23240000000078
PauseStartRelativeMSec
6471.8473
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1226912
TotalPromoted20120
Depth0
GenerationSize0584
TotalPromotedSize020120
GenerationSize1144504
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount449
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount16
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.0608319999999996
RatioPeakAfter
5.001832242247203
AllocRateMBSec
114.41459201851833
HeapSizePeakMB
6.136808
UserAllocated
[ 5.0608319999999996, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.136808
GenSizeBeforeMB
[ 5.131528, 0.12417600000000001, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.7459527659802294
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.250336
PromotedMB
0.023168
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6516.5134
DurationMSec
0.6419000000005326
PauseDurationMSec
0.6846000000005006
SuspendDurationMSec
0.0072000000000116415
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
43.85620000000017
PauseStartRelativeMSec
6516.4792
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1250336
TotalPromoted23168
Depth0
GenerationSize0584
TotalPromotedSize023168
GenerationSize1167928
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount3
GCHandleCount453
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount15
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.110472
RatioPeakAfter
4.972551378189543
AllocRateMBSec
116.52792535604954
HeapSizePeakMB
6.21736
UserAllocated
[ 5.110472, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.21736
GenSizeBeforeMB
[ 5.191752, 0.144504, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.5370177455287966
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.267584
PromotedMB
0.017088
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6560.6955
DurationMSec
0.6319000000003143
PauseDurationMSec
0.6723999999994703
SuspendDurationMSec
0.007599999999911233
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
43.50710000000072
PauseStartRelativeMSec
6560.6634
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1267584
TotalPromoted17088
Depth0
GenerationSize0584
TotalPromotedSize017088
GenerationSize1185176
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount3
GCHandleCount457
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount14
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.121416
RatioPeakAfter
4.959481975159043
AllocRateMBSec
117.71448798012085
HeapSizePeakMB
6.28656
UserAllocated
[ 5.121416, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.28656
GenSizeBeforeMB
[ 5.237528, 0.16792800000000002, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.5219728607147374
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.290184
PromotedMB
0.022368
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6604.1971
DurationMSec
0.619699999999284
PauseDurationMSec
0.6739000000006854
SuspendDurationMSec
0.012400000000525324
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
42.82380000000012
PauseStartRelativeMSec
6604.1523
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1290184
TotalPromoted22368
Depth0
GenerationSize0584
TotalPromotedSize022368
GenerationSize1207776
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount3
GCHandleCount459
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount14
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.132175999999999
RatioPeakAfter
4.877319824149113
AllocRateMBSec
119.84401197464926
HeapSizePeakMB
6.29264
UserAllocated
[ 5.132175999999999, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.29264
GenSizeBeforeMB
[ 5.22636, 0.185176, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.5492773181126196
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.311368
PromotedMB
0.01688
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6647.2385
DurationMSec
0.6048999999993612
PauseDurationMSec
0.6442999999999302
SuspendDurationMSec
0.00709999999980937
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
42.38889999999992
PauseStartRelativeMSec
6647.2068
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1311368
TotalPromoted16880
Depth0
GenerationSize0584
TotalPromotedSize016880
GenerationSize1224840
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4204840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount3
GCHandleCount459
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount14
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.087656000000001
RatioPeakAfter
4.778472556902409
AllocRateMBSec
120.02330798864821
HeapSizePeakMB
6.266335999999999
UserAllocated
[ 5.087656000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.266335999999999
GenSizeBeforeMB
[ 5.177455999999999, 0.207776, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.4972161029157312
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.32044
PromotedMB
0.008984
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6690.0337
DurationMSec
0.5784000000003289
PauseDurationMSec
0.6165999999993801
SuspendDurationMSec
0.006199999999807915
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
42.15760000000046
PauseStartRelativeMSec
6690.002
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1320440
TotalPromoted8984
Depth0
GenerationSize0584
TotalPromotedSize08984
GenerationSize1233912
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4204840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount3
GCHandleCount463
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.153024
RatioPeakAfter
4.807191542213202
AllocRateMBSec
122.23238514526312
HeapSizePeakMB
6.347608
UserAllocated
[ 5.153024, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.347608
GenSizeBeforeMB
[ 5.241664, 0.22483999999999998, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.4415231611564505
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.337536
PromotedMB
0.016912
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6734.0324
DurationMSec
0.5652000000000044
PauseDurationMSec
0.610700000000179
SuspendDurationMSec
0.007799999999406282
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
43.384000000000015
PauseStartRelativeMSec
6733.9974
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1337536
TotalPromoted16912
Depth0
GenerationSize0584
TotalPromotedSize016912
GenerationSize1251008
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4204840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount467
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.07868
RatioPeakAfter
4.711349825350495
AllocRateMBSec
117.06343352387974
HeapSizePeakMB
6.3016
UserAllocated
[ 5.07868, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.3016
GenSizeBeforeMB
[ 5.186584, 0.233912, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.3881217510295019
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.3552
PromotedMB
0.017456
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6777.2655
DurationMSec
0.6365999999998166
PauseDurationMSec
0.677799999999479
SuspendDurationMSec
0.006499999999505235
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
42.63380000000052
PauseStartRelativeMSec
6777.2325
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1355200
TotalPromoted17456
Depth0
GenerationSize0584
TotalPromotedSize017456
GenerationSize1268672
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4204840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount3
GCHandleCount467
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.12568
RatioPeakAfter
4.691959858323495
AllocRateMBSec
120.22573638755958
HeapSizePeakMB
6.358543999999999
UserAllocated
[ 5.12568, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.358543999999999
GenSizeBeforeMB
[ 5.226432, 0.251008, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.5649387231122356
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.373992
PromotedMB
0.018608
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6821.3959
DurationMSec
0.6012999999993554
PauseDurationMSec
0.6721999999999753
SuspendDurationMSec
0.03290000000015425
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
43.43119999999999
PauseStartRelativeMSec
6821.3344
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1373992
TotalPromoted18608
Depth0
GenerationSize0584
TotalPromotedSize018608
GenerationSize1287464
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4204840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount468
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount14
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.068296
RatioPeakAfter
4.5881897420072315
AllocRateMBSec
116.69712096373118
HeapSizePeakMB
6.304136000000001
UserAllocated
[ 5.068296, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.304136000000001
GenSizeBeforeMB
[ 5.1543600000000005, 0.268672, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.5241455307300023
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.401616
PromotedMB
0.02732
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6865.5418
DurationMSec
0.6140000000004875
PauseDurationMSec
0.7811000000001513
SuspendDurationMSec
0.08259999999972933
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
43.38829999999962
PauseStartRelativeMSec
6865.3866
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1401616
TotalPromoted27320
Depth0
GenerationSize0584
TotalPromotedSize027320
GenerationSize1315088
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4204840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount3
GCHandleCount470
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.072168
RatioPeakAfter
4.519160740174199
AllocRateMBSec
116.90174540141108
HeapSizePeakMB
6.334128
UserAllocated
[ 5.072168, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.334128
GenSizeBeforeMB
[ 5.16556, 0.287464, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.7684188601161788
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.423976
PromotedMB
0.022128
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6908.9322
DurationMSec
0.6318999999994048
PauseDurationMSec
0.7088999999996304
SuspendDurationMSec
0.02959999999984575
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
42.707900000000336
PauseStartRelativeMSec
6908.8647
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1423976
TotalPromoted22128
Depth0
GenerationSize0584
TotalPromotedSize022128
GenerationSize1337448
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4204840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount472
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.037568
RatioPeakAfter
4.443681635083737
AllocRateMBSec
117.95400850896345
HeapSizePeakMB
6.3276959999999995
UserAllocated
[ 5.037568, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.3276959999999995
GenSizeBeforeMB
[ 5.131504, 0.315088, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.6327780951144049
(672 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
0.7020166184972073
MeanSizeAfterMB
2.107683028901734
MeanSizePeakMB
6.720975942196532
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
692
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
4.871000000002823
TotalPauseTimeMSec
485.7955000000675
MaxSuspendDurationMSec
0.14469999999710126
MaxSizePeakMB
7.01136
MaxAllocRateMBSec
161.2038133454449
TotalAllocatedMB
3492.0721520000016
TotalCpuMSec
0
TotalPromotedMB
22.791944000000026
TotalSizeAfterMB
1458.516656
TotalSizePeakMB
4650.915352
FinalizedObjects(empty)
ProcessDuration
30053.7902
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
0.6959188679246266
MeanSizeAfterMB
2.110249834542816
MeanSizePeakMB
6.730693979680696
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
689
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
4.871000000002823
TotalPauseTimeMSec
479.4881000000678
MaxSuspendDurationMSec
0.14469999999710126
MaxSizePeakMB
7.01136
MaxAllocRateMBSec
161.2038133454449
TotalAllocatedMB
3482.176888000002
TotalCpuMSec
0
TotalPromotedMB
21.098104000000028
TotalSizeAfterMB
1453.962136
TotalSizePeakMB
4637.448152
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.8287999999997737
MeanSizeAfterMB
1.407028
MeanSizePeakMB
4.661499999999999
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
2
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
2.597899999999754
TotalPauseTimeMSec
3.6575999999995474
MaxSuspendDurationMSec
0.0988999999999578
MaxSizePeakMB
5.766247999999999
MaxAllocRateMBSec
121.60818519186117
TotalAllocatedMB
7.352248
TotalCpuMSec
0
TotalPromotedMB
0.796328
TotalSizeAfterMB
2.814056
TotalSizePeakMB
9.322999999999999
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
2.649800000000141
MeanSizeAfterMB
1.740464
MeanSizePeakMB
4.1442
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
2.649800000000141
TotalPauseTimeMSec
2.649800000000141
MaxSuspendDurationMSec
0.04650000000037835
MaxSizePeakMB
4.1442
MaxAllocRateMBSec
131.18202358475887
TotalAllocatedMB
2.543016
TotalCpuMSec
0
TotalPromotedMB
0.897512
TotalSizeAfterMB
1.740464
TotalSizePeakMB
4.1442
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2N
HeapSizeAfterMB
1.740464
PromotedMB
0.897512
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
6151.0642
DurationMSec
2.579000000000633
PauseDurationMSec
2.649800000000141
SuspendDurationMSec
0.04650000000037835
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
19.385400000000118
PauseStartRelativeMSec
6151.0044
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1740464
TotalPromoted897512
Depth2
GenerationSize0642176
TotalPromotedSize016344
GenerationSize116504
TotalPromotedSize1200
GenerationSize2772784
TotalPromotedSize2772720
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize184
FinalizationPromotedCount3
PinnedObjectCount2
SinkBlockCount3
GCHandleCount434
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration2
Gen0ReductionCount105
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.543016
RatioPeakAfter
2.38108918081615
AllocRateMBSec
131.18202358475887
HeapSizePeakMB
4.1442
UserAllocated
[ 2.543016, 0, 0, 0, 0 ]
HeapSizeBeforeMB
4.1442
GenSizeBeforeMB
[ 2.621608, 0.641592, 0.77272, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
12.025304966599396
BGCs(empty)
GCThreadIDsToHeapNumbers(empty)
DurationMSec
38999.303799999994
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="21483"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionClose_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 4:32:54 PM"\\r\\n SessionEndTime="8/21/2023 4:33:37 PM"\\r\\n SessionDuration="00:00:...
Events
[ <Event MSec= "0.0000" PID="2496" PName="PerfView" TID="10548" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 4:33:34 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="94" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 4:32:54 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="2496" PName="PerfView" TID="10548" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "4.9969" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="2496" PName="PerfView" TID="10548" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "4.9634" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "4.9969" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "5.0170" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "5.0170" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", + "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337144193981.5
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="2496" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="155.8754" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmpC4B8.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", + "
Count109
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="10548" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337144193981.5" /> ... (more) ]
Count1421
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", + "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="102" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1273" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="118" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="27" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", + " ... (more) ]
Count77
(values)
indexvalue
0\r\n", + "
1\r\n", + "
2\r\n", + "
3\r\n", + "
4\r\n", + "
5\r\n", + "
6\r\n", + "
7\r\n", + "
8\r\n", + "
9\r\n", + "
10\r\n", + "
11\r\n", + "
12\r\n", + "
13\r\n", + "
14\r\n", + "
15\r\n", + "
16\r\n", + "
17\r\n", + "
18\r\n", + "
19\r\n", + "
... (more)
MaxEventIndex21483
EventCount
21483
Size
4718974
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionClose_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", + "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", + "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", + "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", + "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", + " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", + " at lambda_method760(Closure, TraceLog)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 16:32:54Z
SessionEndTime2023-08-21 16:33:37Z
SessionEndTimeRelativeMSec
42952.4959
SessionDuration00:00:42.9524959
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [100, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [102, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [103, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionClose_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
Benchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\gi2cj4t4.uuc\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios Plaintext --urls http://10.0.0.104:5000 --server Kestrel --kestrelTransport Sockets --protocol http 
NumberOfHeapCountSwitches
1
Benchmark
ConnectionClose
Id
datas_3 | ConnectionClose
TotalSuspensionTimeMSec
13.128600000019105
PercentPauseTimeInGC
1.616420081351561
PercentTimeInGC
1.5727364064717813
MeanHeapSizeBeforeMB
6.720975942196532
MaxHeapSizeMB
7.01136
TotalAllocationsMB
3492.0721520000016
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionClose_Windows.gc.etl.zip
ProcessName
Benchmarks
datas_3 | FortunesDapper
Submission#4+LoadInfo
WorkingSetMB
165
PrivateMemoryMB
139
Latency50thMS
0.72
Latency75thMS
1
Latency90thMS
1.74
Latency99thMS
12
MeanLatencyMS
1.24
ProcessId
9848
RequestsPerMSec
304.666
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
Benchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\sbk0f5zj.xqa\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios DbFortunesDapper --urls http://10.0.0.104:5000 --server Kestrel --kestrelTransport Sockets --protocol 
ProcessID
9848
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.529128
PromotedMB
1.244456
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6337.9806
DurationMSec
5.990899999999783
PauseDurationMSec
6.318700000000717
SuspendDurationMSec
0.06860000000051514
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
6337.7094
PauseStartRelativeMSec
6337.7094
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1529128
TotalPromoted1244456
Depth0
GenerationSize0584
TotalPromotedSize01244456
GenerationSize11260744
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4159520
TotalPromotedSize40
FinalizationPromotedSize37556
FinalizationPromotedCount23
PinnedObjectCount1
SinkBlockCount3
GCHandleCount572
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.7858701168247524
AllocRateMBSec
0
HeapSizePeakMB
2.730824
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.730824
GenSizeBeforeMB
[ 2.622544, 0, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
0.09960075681254812
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
4.996832
PromotedMB
2.47108
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6366.5297
DurationMSec
7.754799999999705
PauseDurationMSec
7.889100000000326
SuspendDurationMSec
0.09379999999964639
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
22.440300000000207
PauseStartRelativeMSec
6366.4128
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4996832
TotalPromoted2471080
Depth1
GenerationSize02141704
TotalPromotedSize01270072
GenerationSize11279336
TotalPromotedSize11201008
GenerationSize21200872
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4266640
TotalPromotedSize40
FinalizationPromotedSize3120
FinalizationPromotedCount25
PinnedObjectCount3
SinkBlockCount5
GCHandleCount832
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.497552
RatioPeakAfter
0.7991047127459959
AllocRateMBSec
111.2976207982949
HeapSizePeakMB
3.9929920000000005
UserAllocated
[ 2.497552, 0, 0, 0, 0 ]
HeapSizeBeforeMB
3.9929920000000005
GenSizeBeforeMB
[ 2.623968, 1.260744, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
26.01139488417241
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.19804
PromotedMB
1.632096
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6382.553
DurationMSec
7.477899999999863
PauseDurationMSec
7.626100000000406
SuspendDurationMSec
0.12049999999999272
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
8.133899999999812
PauseStartRelativeMSec
6382.4194
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6198040
TotalPromoted1632096
Depth0
GenerationSize01681096
TotalPromotedSize01632096
GenerationSize12924672
TotalPromotedSize10
GenerationSize21200872
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4283120
TotalPromotedSize40
FinalizationPromotedSize48
FinalizationPromotedCount2
PinnedObjectCount2
SinkBlockCount5
GCHandleCount1049
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount253
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.41952
RatioPeakAfter
0.8423153125826875
AllocRateMBSec
297.46124245442604
HeapSizePeakMB
5.2207040000000005
UserAllocated
[ 2.41952, 0, 0, 0, 0 ]
HeapSizeBeforeMB
5.2207040000000005
GenSizeBeforeMB
[ 2.632216, 1.279336, 1.200872, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
48.38895939086485
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
7.75344
PromotedMB
3.139736
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6431.3659
DurationMSec
7.628099999999904
PauseDurationMSec
7.874499999999898
SuspendDurationMSec
0.13950000000022555
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
41.1264000000001
PauseStartRelativeMSec
6431.1581
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize7753440
TotalPromoted3139736
Depth1
GenerationSize02432160
TotalPromotedSize01111408
GenerationSize11671976
TotalPromotedSize12028328
GenerationSize23229064
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4311960
TotalPromotedSize40
FinalizationPromotedSize48
FinalizationPromotedCount2
PinnedObjectCount3
SinkBlockCount7
GCHandleCount1180
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration1
Gen0ReductionCount484
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.357487999999998
RatioPeakAfter
1.8680668193730783
AllocRateMBSec
227.5299564270146
HeapSizePeakMB
14.483944000000001
UserAllocated
[ 9.357455999999999, 0, 0, 3.200000000000425E-05, 0 ]
HeapSizeBeforeMB
14.483944000000001
GenSizeBeforeMB
[ 10.25012, 2.924672, 1.200872, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
16.07011299792432
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
9.893944
PromotedMB
6.572424
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
5
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
6468.9227
DurationMSec
9.8729000000003
PauseDurationMSec
1.3258999999998196
SuspendDurationMSec
0.265400000000227
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
5.434699999999793
PauseStartRelativeMSec
6468.7384
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.1970000000001164
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9893944
TotalPromoted6572424
Depth2
GenerationSize03594496
TotalPromotedSize01207928
GenerationSize12608944
TotalPromotedSize12028328
GenerationSize23229064
TotalPromotedSize23227920
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize4353160
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount6
GCHandleCount1224
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.5397734209936909
AllocRateMBSec
0
HeapSizePeakMB
15.234432000000002
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.44148
GenSizeBeforeMB
[ 2.43216, 1.671976, 3.229064, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
14.459468966072247
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
8.09696
PromotedMB
1.207928
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6469.641
DurationMSec
3.7211000000006607
PauseDurationMSec
4.429200000000492
SuspendDurationMSec
0
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
30.64589999999953
PauseStartRelativeMSec
6469.641
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8096960
TotalPromoted1207928
Depth0
GenerationSize01801632
TotalPromotedSize01207928
GenerationSize12608944
TotalPromotedSize10
GenerationSize23229064
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4349040
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount6
GCHandleCount1223
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount155
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure0
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.25128
RatioPeakAfter
1.8815002173655302
AllocRateMBSec
301.8765968694064
HeapSizePeakMB
15.234432000000002
UserAllocated
[ 9.142999999999999, 0, 0, 0.10828, 0 ]
HeapSizeBeforeMB
15.234432000000002
GenSizeBeforeMB
[ 10.225112, 1.6719760000000001, 3.229064, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
12.627761574451647
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
8.20996
PromotedMB
1.125248
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6502.4372
DurationMSec
2.9793999999992593
PauseDurationMSec
3.6063999999996668
SuspendDurationMSec
0.1565999999993437
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
23.03310000000056
PauseStartRelativeMSec
6501.8311
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8209960
TotalPromoted1125248
Depth0
GenerationSize01768768
TotalPromotedSize01125248
GenerationSize12738328
TotalPromotedSize10
GenerationSize23229064
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4365520
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount7
GCHandleCount1239
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount105
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.884567999999999
RatioPeakAfter
1.824155050694522
AllocRateMBSec
342.3146688895463
HeapSizePeakMB
14.97624
UserAllocated
[ 7.884599999999999, 0, 0, -3.2E-05, 0 ]
HeapSizeBeforeMB
14.97624
GenSizeBeforeMB
[ 9.029952, 2.608944, 3.229064, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
13.537791625216826
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
11.406968
PromotedMB
1.3704
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6535.5206
DurationMSec
2.74369999999999
PauseDurationMSec
3.0870999999997366
SuspendDurationMSec
0.19209999999930005
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
29.801400000000285
PauseStartRelativeMSec
6535.2191
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11406968
TotalPromoted1370400
Depth1
GenerationSize05660232
TotalPromotedSize0618432
GenerationSize11237136
TotalPromotedSize1751968
GenerationSize23969880
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4431440
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount7
SinkBlockCount7
GCHandleCount1243
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps8
CondemnedGeneration1
Gen0ReductionCount92
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.654824
RatioPeakAfter
2.2469473044896766
AllocRateMBSec
592.4159267685354
HeapSizePeakMB
25.630856
UserAllocated
[ 17.654792, 0, 0, 3.2E-05, 0 ]
HeapSizeBeforeMB
25.630856
GenSizeBeforeMB
[ 19.555184, 2.738328, 3.229064, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
9.386563692475287
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
5.85108
PromotedMB
0.637984
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6557.1808
DurationMSec
1.8942999999999302
PauseDurationMSec
2.144800000000032
SuspendDurationMSec
0.13839999999981956
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
18.687600000000202
PauseStartRelativeMSec
6556.9534
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5851080
TotalPromoted637984
Depth1
GenerationSize0584
TotalPromotedSize0586336
GenerationSize11272904
TotalPromotedSize151648
GenerationSize24021392
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4447920
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount7
GCHandleCount1243
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps8
CondemnedGeneration1
Gen0ReductionCount84
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
18.159816
RatioPeakAfter
4.452572858344101
AllocRateMBSec
971.7575290566901
HeapSizePeakMB
26.05236
UserAllocated
[ 18.159816, 0, 0, 0, 0 ]
HeapSizeBeforeMB
26.05236
GenSizeBeforeMB
[ 20.737064, 1.237136, 3.96988, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
10.29550123845552
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
8.473464
PromotedMB
0.591808
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6578.0983
DurationMSec
1.8757000000005064
PauseDurationMSec
2.162899999999354
SuspendDurationMSec
0.15929999999934807
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
18.758499999999913
PauseStartRelativeMSec
6577.8351
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8473464
TotalPromoted591808
Depth1
GenerationSize02590520
TotalPromotedSize0578496
GenerationSize11255072
TotalPromotedSize113312
GenerationSize24026352
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4493240
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount7
GCHandleCount1242
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps8
CondemnedGeneration1
Gen0ReductionCount90
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
18.279568
RatioPeakAfter
3.070994341865381
AllocRateMBSec
974.4685342644715
HeapSizePeakMB
26.02196
UserAllocated
[ 18.279568, 0, 0, 0, 0 ]
HeapSizeBeforeMB
26.02196
GenSizeBeforeMB
[ 20.619384, 1.2729039999999998, 4.021392, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
10.338218283668539
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
8.004576
PromotedMB
0.569328
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6606.9642
DurationMSec
1.9359999999996944
PauseDurationMSec
2.3344000000006417
SuspendDurationMSec
0.1912000000002081
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
26.6266999999998
PauseStartRelativeMSec
6606.6023
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8004576
TotalPromoted569328
Depth1
GenerationSize02181744
TotalPromotedSize0556200
GenerationSize11173728
TotalPromotedSize113128
GenerationSize24039344
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4501480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount10
GCHandleCount1242
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration1
Gen0ReductionCount88
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
25.537856
RatioPeakAfter
4.194911510615928
AllocRateMBSec
959.1070617087431
HeapSizePeakMB
33.578488
UserAllocated
[ 25.537856, 0, 0, 0, 0 ]
HeapSizeBeforeMB
33.578488
GenSizeBeforeMB
[ 28.188784, 1.2550720000000004, 4.026351999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
8.060467316505955
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
11.008288
PromotedMB
0.588768
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6638.6023
DurationMSec
1.548200000000179
PauseDurationMSec
1.8320999999996275
SuspendDurationMSec
0.12820000000010623
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
29.441499999999905
PauseStartRelativeMSec
6638.3432
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11008288
TotalPromoted588768
Depth1
GenerationSize05130200
TotalPromotedSize0587592
GenerationSize11223824
TotalPromotedSize11176
GenerationSize24040384
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4505600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount10
GCHandleCount1243
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration1
Gen0ReductionCount66
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
28.628904
RatioPeakAfter
3.2980692365606714
AllocRateMBSec
972.3996399639994
HeapSizePeakMB
36.306096000000004
UserAllocated
[ 28.628904, 0, 0, 0, 0 ]
HeapSizeBeforeMB
36.306096000000004
GenSizeBeforeMB
[ 30.984744000000003, 1.173728, 4.039343999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.8582958149994075
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
13.676928
PromotedMB
0.590616
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6669.8366
DurationMSec
1.5870000000004438
PauseDurationMSec
1.8747000000003027
SuspendDurationMSec
0.12750000000050932
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
29.421299999999974
PauseStartRelativeMSec
6669.5732
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13676928
TotalPromoted590616
Depth1
GenerationSize07732336
TotalPromotedSize0588520
GenerationSize11284248
TotalPromotedSize12096
GenerationSize24042344
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4509720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount11
GCHandleCount1242
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration1
Gen0ReductionCount48
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
28.670080000000002
RatioPeakAfter
2.6577828003481483
AllocRateMBSec
974.4667978641334
HeapSizePeakMB
36.350304
UserAllocated
[ 28.670080000000002, 0, 0, 0, 0 ]
HeapSizeBeforeMB
36.350304
GenSizeBeforeMB
[ 30.977815999999997, 1.223824, 4.0403839999999995, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.990222392638951
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
5.920864
PromotedMB
0.559352
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6701.0004
DurationMSec
1.5587000000004991
PauseDurationMSec
1.897399999999834
SuspendDurationMSec
0.16679999999996653
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
29.25969999999961
PauseStartRelativeMSec
6700.6847
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5920864
TotalPromoted559352
Depth1
GenerationSize0584
TotalPromotedSize0559176
GenerationSize11247536
TotalPromotedSize1176
GenerationSize24042384
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4522080
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount11
GCHandleCount1242
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration1
Gen0ReductionCount50
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
28.808112
RatioPeakAfter
6.161292676204013
AllocRateMBSec
984.566212230487
HeapSizePeakMB
36.480176
UserAllocated
[ 28.808112, 0, 0, 0, 0 ]
HeapSizeBeforeMB
36.480176
GenSizeBeforeMB
[ 31.045304, 1.2842480000000003, 4.042343999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
6.089783709009721
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
11.137552
PromotedMB
0.584496
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6731.7328
DurationMSec
1.6198000000003958
PauseDurationMSec
1.9596000000001368
SuspendDurationMSec
0.14440000000013242
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
28.85660000000007
PauseStartRelativeMSec
6731.4172
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11137552
TotalPromoted584496
Depth1
GenerationSize05176784
TotalPromotedSize0584240
GenerationSize11271464
TotalPromotedSize1256
GenerationSize24042464
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4538560
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount13
GCHandleCount1242
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration1
Gen0ReductionCount49
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated40
FreeListConsumed40
AllocedSinceLastGCMB
28.392303999999996
RatioPeakAfter
3.24520361386416
AllocRateMBSec
983.9102319746584
HeapSizePeakMB
36.143624
UserAllocated
[ 28.392303999999996, 0, 0, 0, 0 ]
HeapSizeBeforeMB
36.143624
GenSizeBeforeMB
[ 30.745424, 1.247536, 4.042383999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
6.358992997190191
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
5.985368
PromotedMB
0.56688
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6762.4619
DurationMSec
1.5198999999993248
PauseDurationMSec
1.8317000000006374
SuspendDurationMSec
0.13170000000081927
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
28.82009999999991
PauseStartRelativeMSec
6762.1738
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5985368
TotalPromoted566880
Depth1
GenerationSize0584
TotalPromotedSize0566584
GenerationSize11291320
TotalPromotedSize1296
GenerationSize24042504
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4542680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount12
GCHandleCount1242
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration1
Gen0ReductionCount52
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated120
FreeListConsumed120
AllocedSinceLastGCMB
28.121879999999997
RatioPeakAfter
5.978301751872232
AllocRateMBSec
975.7731583165945
HeapSizePeakMB
35.782336
UserAllocated
[ 28.121879999999997, 0, 0, 0, 0 ]
HeapSizeBeforeMB
35.782336
GenSizeBeforeMB
[ 30.360128, 1.2714640000000001, 4.042464, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.975831761921338
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
11.054888
PromotedMB
0.571072
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6793.3817
DurationMSec
1.4936999999999898
PauseDurationMSec
1.8447999999998501
SuspendDurationMSec
0.18170000000009168
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
29.070400000000518
PauseStartRelativeMSec
6793.0536
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11054888
TotalPromoted571072
Depth1
GenerationSize05125216
TotalPromotedSize0569936
GenerationSize11231088
TotalPromotedSize11136
GenerationSize24043504
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4546800
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount12
GCHandleCount1243
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration1
Gen0ReductionCount48
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
28.319895999999996
RatioPeakAfter
3.269962753127847
AllocRateMBSec
974.1832241730245
HeapSizePeakMB
36.149072
UserAllocated
[ 28.319895999999996, 0, 0, 0, 0 ]
HeapSizeBeforeMB
36.149072
GenSizeBeforeMB
[ 30.706968, 1.29132, 4.042504, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.967291170685709
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
15.622192
PromotedMB
0.577136
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6822.6883
DurationMSec
1.564900000000307
PauseDurationMSec
1.8635000000003856
SuspendDurationMSec
0.1338000000005195
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
27.53609999999935
PauseStartRelativeMSec
6822.4131
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize15622192
TotalPromoted577136
Depth1
GenerationSize09680040
TotalPromotedSize0576960
GenerationSize11243528
TotalPromotedSize1176
GenerationSize24043544
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4546800
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount7
SinkBlockCount12
GCHandleCount1243
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration1
Gen0ReductionCount47
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
26.893624000000003
RatioPeakAfter
2.2255202086877435
AllocRateMBSec
976.6678650934823
HeapSizePeakMB
34.767503999999995
UserAllocated
[ 26.893624000000003, 0, 0, 0, 0 ]
HeapSizeBeforeMB
34.767503999999995
GenSizeBeforeMB
[ 29.384631999999996, 1.2310880000000002, 4.043504, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
6.3385216125403145
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
11.141216
PromotedMB
0.577696
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6853.5049
DurationMSec
1.4315999999998894
PauseDurationMSec
1.748700000000099
SuspendDurationMSec
0.140400000000227
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
28.95839999999953
PauseStartRelativeMSec
6853.213
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11141216
TotalPromoted577696
Depth1
GenerationSize05148936
TotalPromotedSize0577560
GenerationSize11289536
TotalPromotedSize1136
GenerationSize24043544
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4550920
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount12
GCHandleCount1244
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration1
Gen0ReductionCount52
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
28.626104
RatioPeakAfter
3.26916415586952
AllocRateMBSec
988.5250566329794
HeapSizePeakMB
36.42246399999999
UserAllocated
[ 28.626104, 0, 0, 0, 0 ]
HeapSizeBeforeMB
36.42246399999999
GenSizeBeforeMB
[ 31.027111999999995, 1.243528, 4.043544, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.694774172748714
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
5.928608
PromotedMB
0.567064
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6884.1349
DurationMSec
1.6652000000003682
PauseDurationMSec
1.9534000000003289
SuspendDurationMSec
0.11670000000049185
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
28.930900000000292
PauseStartRelativeMSec
6883.8691
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5928608
TotalPromoted567064
Depth1
GenerationSize0584
TotalPromotedSize0566888
GenerationSize11225240
TotalPromotedSize1176
GenerationSize24043584
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4550920
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount13
GCHandleCount1243
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration1
Gen0ReductionCount46
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
28.493167999999997
RatioPeakAfter
6.127865428107239
AllocRateMBSec
984.8697413492048
HeapSizePeakMB
36.329712
UserAllocated
[ 28.493167999999997, 0, 0, 0, 0 ]
HeapSizeBeforeMB
36.329712
GenSizeBeforeMB
[ 30.888352, 1.289536, 4.043544, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
6.324896468433118
(1092 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.5592529676259728
MeanSizeAfterMB
11.431372985611496
MeanSizePeakMB
71.05402893525176
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1112
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
7.889100000000326
TotalPauseTimeMSec
1733.8893000000817
MaxSuspendDurationMSec
0.265400000000227
MaxSizePeakMB
81.61447199999998
MaxAllocRateMBSec
3115.5348028681224
TotalAllocatedMB
69265.57620799995
TotalCpuMSec
0
TotalPromotedMB
850.5396959999997
TotalSizeAfterMB
12711.686759999984
TotalSizePeakMB
79012.08017599996
FinalizedObjects(empty)
ProcessDuration
30323.4511
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.5404869090910274
MeanSizeAfterMB
11.982527932121203
MeanSizePeakMB
73.65361247030293
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
825
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
7.626100000000406
TotalPauseTimeMSec
1270.9017000000977
MaxSuspendDurationMSec
0.23730000000068685
MaxSizePeakMB
79.521608
MaxAllocRateMBSec
3115.5348028681224
TotalAllocatedMB
53737.01268
TotalCpuMSec
0
TotalPromotedMB
695.8737760000002
TotalSizeAfterMB
9885.585543999992
TotalSizePeakMB
60764.23028799992
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.614201748251693
MeanSizeAfterMB
9.846878573426569
MeanSizePeakMB
63.75040369230768
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
286
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
7.889100000000326
TotalPauseTimeMSec
461.6616999999842
MaxSuspendDurationMSec
0.2073999999993248
MaxSizePeakMB
81.61447199999998
MaxAllocRateMBSec
3072.265173887952
TotalAllocatedMB
15528.563528000004
TotalCpuMSec
0
TotalPromotedMB
148.09349600000004
TotalSizeAfterMB
2816.2072719999987
TotalSizePeakMB
18232.615455999996
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.3258999999998196
MeanSizeAfterMB
9.893944
MeanSizePeakMB
15.234432000000002
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
1.3258999999998196
TotalPauseTimeMSec
1.3258999999998196
MaxSuspendDurationMSec
0.265400000000227
MaxSizePeakMB
15.234432000000002
MaxAllocRateMBSec
0
TotalAllocatedMB
0
TotalCpuMSec
0
TotalPromotedMB
6.572424
TotalSizeAfterMB
9.893944
TotalSizePeakMB
15.234432000000002
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking(empty)
BGCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
9.893944
PromotedMB
6.572424
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
5
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
6468.9227
DurationMSec
9.8729000000003
PauseDurationMSec
1.3258999999998196
SuspendDurationMSec
0.265400000000227
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
5.434699999999793
PauseStartRelativeMSec
6468.7384
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.1970000000001164
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9893944
TotalPromoted6572424
Depth2
GenerationSize03594496
TotalPromotedSize01207928
GenerationSize12608944
TotalPromotedSize12028328
GenerationSize23229064
TotalPromotedSize23227920
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize4353160
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount6
GCHandleCount1224
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.5397734209936909
AllocRateMBSec
0
HeapSizePeakMB
15.234432000000002
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.44148
GenSizeBeforeMB
[ 2.43216, 1.671976, 3.229064, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
14.459468966072247
GCThreadIDsToHeapNumbers(empty)
DurationMSec
39907.8599
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="242565"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesDapper_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 12:15:36 PM"\\r\\n SessionEndTime="8/21/2023 12:16:21 PM"\\r\\n SessionDuration="00:0...
Events
[ <Event MSec= "0.0000" PID="10544" PName="PerfView" TID="8804" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 12:16:18 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="631" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 12:15:36 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="10544" PName="PerfView" TID="8804" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "11.4394" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="10544" PName="PerfView" TID="8804" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "11.4095" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "11.4394" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "11.4605" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "11.4605" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", + "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337159632108.9
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="10544" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="156.1455" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmp31ED.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", + "
Count104
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="8804" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337159632108.9" /> ... (more) ]
Count1356
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", + "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="100" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1175" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="151" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="28" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", + " ... (more) ]
Count78
(values)
indexvalue
0\r\n", + "
1\r\n", + "
2\r\n", + "
3\r\n", + "
4\r\n", + "
5\r\n", + "
6\r\n", + "
7\r\n", + "
8\r\n", + "
9\r\n", + "
10\r\n", + "
11\r\n", + "
12\r\n", + "
13\r\n", + "
14\r\n", + "
15\r\n", + "
16\r\n", + "
17\r\n", + "
18\r\n", + "
19\r\n", + "
... (more)
MaxEventIndex242565
EventCount
242565
Size
44834938
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesDapper_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", + "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", + "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", + "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", + "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", + " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", + " at lambda_method760(Closure, TraceLog)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 12:15:36Z
SessionEndTime2023-08-21 12:16:21Z
SessionEndTimeRelativeMSec
44872.132
SessionDuration00:00:44.8721320
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [98, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [100, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [101, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesDapper_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
Benchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\sbk0f5zj.xqa\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios DbFortunesDapper --urls http://10.0.0.104:5000 --server Kestrel --kestrelTransport Sockets --protocol 
NumberOfHeapCountSwitches
7
Benchmark
FortunesDapper
Id
datas_3 | FortunesDapper
TotalSuspensionTimeMSec
104.42770000007658
PercentPauseTimeInGC
5.717981420657234
PercentTimeInGC
5.373602083174514
MeanHeapSizeBeforeMB
71.05402893525176
MaxHeapSizeMB
81.61447199999998
TotalAllocationsMB
69265.57620799995
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesDapper_Windows.gc.etl.zip
ProcessName
Benchmarks
datas_3 | FortunesEf
Submission#4+LoadInfo
WorkingSetMB
188
PrivateMemoryMB
149
Latency50thMS
0.75
Latency75thMS
1.02
Latency90thMS
1.44
Latency99thMS
9.98
MeanLatencyMS
1.1
ProcessId
7872
RequestsPerMSec
300.823
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
Benchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\1apcayl1.p0r\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios DbFortunesEf --urls http://10.0.0.104:5000 --server Kestrel --kestrelTransport Sockets --protocol 
ProcessID
7872
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
3.103808
PromotedMB
1.289464
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6063.4725
DurationMSec
5.293499999999767
PauseDurationMSec
5.522300000000541
SuspendDurationMSec
0.0059000000001105946
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
6063.2953
PauseStartRelativeMSec
6063.2953
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3103808
TotalPromoted1289464
Depth0
GenerationSize01553984
TotalPromotedSize01289464
GenerationSize11306744
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4134800
TotalPromotedSize40
FinalizationPromotedSize29770
FinalizationPromotedCount19
PinnedObjectCount2
SinkBlockCount3
GCHandleCount661
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
0.87951574324185
AllocRateMBSec
0
HeapSizePeakMB
2.729848
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.729848
GenSizeBeforeMB
[ 2.621568, 0, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
0.0909946609698822
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
4.293536
PromotedMB
2.319656
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6796.7263
DurationMSec
11.098899999999958
PauseDurationMSec
11.298900000000685
SuspendDurationMSec
0.12290000000029977
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
727.8085000000001
PauseStartRelativeMSec
6796.5754
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4293536
TotalPromoted2319656
Depth1
GenerationSize01553984
TotalPromotedSize01160064
GenerationSize11176696
TotalPromotedSize11159592
GenerationSize21159592
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4196600
TotalPromotedSize40
FinalizationPromotedSize72614
FinalizationPromotedCount72
PinnedObjectCount2
SinkBlockCount4
GCHandleCount1115
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.5748239999999996
RatioPeakAfter
0.9631054683132971
AllocRateMBSec
3.5377767640801108
HeapSizePeakMB
4.135128
UserAllocated
[ 2.476472, 0, 0, 0.098352, 0 ]
HeapSizeBeforeMB
4.135128
GenSizeBeforeMB
[ 2.62172, 1.306744, 0, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
1.5287223480647973
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.244992
PromotedMB
1.481632
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6822.3732
DurationMSec
8.95470000000023
PauseDurationMSec
9.030499999999847
SuspendDurationMSec
0.045900000000074215
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
14.484599999999773
PauseStartRelativeMSec
6822.3107
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4244992
TotalPromoted1481632
Depth0
GenerationSize0584
TotalPromotedSize01481632
GenerationSize12681552
TotalPromotedSize10
GenerationSize21159592
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4196600
TotalPromotedSize40
FinalizationPromotedSize441542
FinalizationPromotedCount370
PinnedObjectCount1
SinkBlockCount4
GCHandleCount1561
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount14
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.35088
RatioPeakAfter
1.2183467012423108
AllocRateMBSec
162.30203112271218
HeapSizePeakMB
5.171872
UserAllocated
[ 2.35088, 0, 0, 0, 0 ]
HeapSizeBeforeMB
5.171872
GenSizeBeforeMB
[ 2.62892, 1.176696, 1.159592, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
38.402983614783665
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.258208
PromotedMB
1.248792
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6881.2116
DurationMSec
7.772100000000137
PauseDurationMSec
7.992699999999786
SuspendDurationMSec
0.17780000000038854
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
49.6890999999996
PauseStartRelativeMSec
6881.0179
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6258208
TotalPromoted1248792
Depth0
GenerationSize0724288
TotalPromotedSize01248792
GenerationSize13938104
TotalPromotedSize10
GenerationSize21159592
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4229560
TotalPromotedSize40
FinalizationPromotedSize48164
FinalizationPromotedCount330
PinnedObjectCount2
SinkBlockCount4
GCHandleCount1717
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount9384
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.330968
RatioPeakAfter
1.0669597431085704
AllocRateMBSec
46.91105292710109
HeapSizePeakMB
6.677256
UserAllocated
[ 2.330968, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.677256
GenSizeBeforeMB
[ 2.629448, 2.681552, 1.159592, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
13.85653707061824
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.81724
PromotedMB
1.262728
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
5
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6891.1542
DurationMSec
6.188100000000304
PauseDurationMSec
6.3190999999997075
SuspendDurationMSec
0.10180000000036671
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
2.0536000000001877
PauseStartRelativeMSec
6891.0382
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6817240
TotalPromoted1262728
Depth0
GenerationSize00
TotalPromotedSize01262728
GenerationSize15217304
TotalPromotedSize10
GenerationSize21159592
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4233680
TotalPromotedSize40
FinalizationPromotedSize312
FinalizationPromotedCount13
PinnedObjectCount2
SinkBlockCount4
GCHandleCount1760
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount134
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.363536
RatioPeakAfter
1.163836391266847
AllocRateMBSec
1150.9232567198014
HeapSizePeakMB
7.934152
UserAllocated
[ 2.363536, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.934152
GenSizeBeforeMB
[ 2.629792, 3.938104, 1.159592, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
75.4726671205201
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
8.3072
PromotedMB
1.277608
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6900.5976
DurationMSec
5.792499999999563
PauseDurationMSec
5.918999999999869
SuspendDurationMSec
0.09540000000015425
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
3.1396999999997206
PauseStartRelativeMSec
6900.4829
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8307200
TotalPromoted1277608
Depth0
GenerationSize0200888
TotalPromotedSize01277608
GenerationSize16502256
TotalPromotedSize10
GenerationSize21159592
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4237800
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount1850
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount21740
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.395632
RatioPeakAfter
1.1085063559322035
AllocRateMBSec
763.0130267223662
HeapSizePeakMB
9.208584
UserAllocated
[ 2.395632, 0, 0, 0, 0 ]
HeapSizeBeforeMB
9.208584
GenSizeBeforeMB
[ 2.625024, 5.217304, 1.159592, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
65.34050139644913
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
15.833608
PromotedMB
8.945912
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7020.0924
DurationMSec
12.97569999999996
PauseDurationMSec
13.504799999999705
SuspendDurationMSec
0.19049999999970169
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
113.34660000000076
PauseStartRelativeMSec
7019.7376
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize15833608
TotalPromoted8945912
Depth1
GenerationSize03416176
TotalPromotedSize03665952
GenerationSize15438896
TotalPromotedSize15279960
GenerationSize26439312
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4332560
TotalPromotedSize40
FinalizationPromotedSize31509
FinalizationPromotedCount392
PinnedObjectCount4
SinkBlockCount4
GCHandleCount2112
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount11638
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
34.133904
RatioPeakAfter
2.6979609448459256
AllocRateMBSec
301.14625405614083
HeapSizePeakMB
42.718456
UserAllocated
[ 34.13384, 0, 0, 6.399999999998074E-05, 0 ]
HeapSizeBeforeMB
42.718456
GenSizeBeforeMB
[ 34.849943999999994, 6.502255999999999, 1.159592, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
10.64615763010866
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
27.067728
PromotedMB
12.928352
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
8
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7078.7171
DurationMSec
15.581100000000333
PauseDurationMSec
2.1929999999993015
SuspendDurationMSec
0.2653999999993175
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
11.557600000000093
PauseStartRelativeMSec
7078.3986
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
2.074200000000019
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize27067728
TotalPromoted12928352
Depth2
GenerationSize014234176
TotalPromotedSize01037032
GenerationSize15438896
TotalPromotedSize15279960
GenerationSize26439312
TotalPromotedSize26404760
GenerationSize3206664
TotalPromotedSize3206600
GenerationSize4748680
TotalPromotedSize40
FinalizationPromotedSize216
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount7
GCHandleCount1758
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.7549648792096628
AllocRateMBSec
0
HeapSizePeakMB
47.50291200000001
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.501048
GenSizeBeforeMB
[ 3.416176, 5.438896, 6.439312, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
8.431637380959641
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
23.617624
PromotedMB
1.037032
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7080.5168
DurationMSec
2.225399999999354
PauseDurationMSec
2.969699999999648
SuspendDurationMSec
0
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
47.44710000000032
PauseStartRelativeMSec
7080.5168
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize23617624
TotalPromoted1037032
Depth0
GenerationSize010854112
TotalPromotedSize01037032
GenerationSize15438896
TotalPromotedSize10
GenerationSize26439312
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4678640
TotalPromotedSize40
FinalizationPromotedSize216
FinalizationPromotedCount9
PinnedObjectCount5
SinkBlockCount4
GCHandleCount1760
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration0
Gen0ReductionCount101
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure0
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
33.814744000000005
RatioPeakAfter
2.0113332314884853
AllocRateMBSec
712.6830512296806
HeapSizePeakMB
47.50291200000001
UserAllocated
[ 33.60808, 0, 0, 0.206664, 0 ]
HeapSizeBeforeMB
47.50291200000001
GenSizeBeforeMB
[ 35.418040000000005, 5.438896000000001, 6.439312, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
5.890298471937231
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
13.739464
PromotedMB
3.70472
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7122.3261
DurationMSec
3.1067999999995664
PauseDurationMSec
3.7421000000003914
SuspendDurationMSec
0.2055000000000291
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
27.417099999999664
PauseStartRelativeMSec
7121.718
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13739464
TotalPromoted3704720
Depth1
GenerationSize00
TotalPromotedSize0572488
GenerationSize13241648
TotalPromotedSize13132232
GenerationSize29530112
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4761040
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount7
GCHandleCount1749
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount43
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated16352
FreeListConsumed16352
AllocedSinceLastGCMB
30.025384
RatioPeakAfter
3.3498121906356757
AllocRateMBSec
1095.133475094024
HeapSizePeakMB
46.024624
UserAllocated
[ 30.025447999999997, 0, 0, -6.4E-05, 0 ]
HeapSizeBeforeMB
46.024624
GenSizeBeforeMB
[ 33.939752, 5.438896000000001, 6.439312, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
12.009615137745465
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
13.056944
PromotedMB
0.544176
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7160.0168
DurationMSec
1.4113999999999578
PauseDurationMSec
1.7385000000003856
SuspendDurationMSec
0.12560000000030414
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.27669999999944
PauseStartRelativeMSec
7159.7107
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13056944
TotalPromoted544176
Depth1
GenerationSize00
TotalPromotedSize0461456
GenerationSize12460144
TotalPromotedSize182720
GenerationSize29604376
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4785760
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount8
GCHandleCount1749
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount72
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
33.555248
RatioPeakAfter
3.698296936863634
AllocRateMBSec
978.9521161605567
HeapSizePeakMB
48.288456000000004
UserAllocated
[ 33.555248, 0, 0, 0, 0 ]
HeapSizeBeforeMB
48.288456000000004
GenSizeBeforeMB
[ 35.310032, 3.241648, 9.530112000000003, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
4.827128545726233
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
25.458728
PromotedMB
0.48176
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7195.2044
DurationMSec
1.3980000000001382
PauseDurationMSec
1.7308000000002721
SuspendDurationMSec
0.13770000000022264
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
33.46739999999954
PauseStartRelativeMSec
7194.897
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize25458728
TotalPromoted481760
Depth1
GenerationSize012430472
TotalPromotedSize0473064
GenerationSize12419000
TotalPromotedSize18696
GenerationSize29612712
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4789880
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount7
SinkBlockCount8
GCHandleCount1749
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount39
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated120
FreeListConsumed120
AllocedSinceLastGCMB
33.350384
RatioPeakAfter
1.8630049388170529
AllocRateMBSec
996.5035825908333
HeapSizePeakMB
47.42973599999999
UserAllocated
[ 33.350384, 0, 0, 0, 0 ]
HeapSizeBeforeMB
47.42973599999999
GenSizeBeforeMB
[ 35.15855199999999, 2.460144, 9.604375999999997, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
4.91729690722901
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
17.795152
PromotedMB
0.507336
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7229.8382
DurationMSec
1.3265000000001237
PauseDurationMSec
1.6789000000007945
SuspendDurationMSec
0.14830000000074506
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
32.90679999999975
PauseStartRelativeMSec
7229.5106
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize17795152
TotalPromoted507336
Depth1
GenerationSize04716016
TotalPromotedSize0505136
GenerationSize12463840
TotalPromotedSize12200
GenerationSize29614632
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4794000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount9
GCHandleCount1749
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount39
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated40
FreeListConsumed40
AllocedSinceLastGCMB
32.298336
RatioPeakAfter
2.6134187558499073
AllocRateMBSec
981.5094752452455
HeapSizePeakMB
46.506184
UserAllocated
[ 32.298336, 0, 0, 0, 0 ]
HeapSizeBeforeMB
46.506184
GenSizeBeforeMB
[ 34.267808, 2.419, 9.612711999999997, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
4.854318403272937
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
23.281784
PromotedMB
0.529992
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7265.858
DurationMSec
1.3380999999999403
PauseDurationMSec
1.6957000000002154
SuspendDurationMSec
0.1631999999999607
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.36119999999937
PauseStartRelativeMSec
7265.5273
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize23281784
TotalPromoted529992
Depth1
GenerationSize010184976
TotalPromotedSize0527792
GenerationSize12471312
TotalPromotedSize12200
GenerationSize29616592
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4802240
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount6
SinkBlockCount9
GCHandleCount1751
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount37
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
33.969912
RatioPeakAfter
2.0629206078022206
AllocRateMBSec
988.612504801946
HeapSizePeakMB
48.02847200000001
UserAllocated
[ 33.969912, 0, 0, 0, 0 ]
HeapSizeBeforeMB
48.02847200000001
GenSizeBeforeMB
[ 35.743336000000006, 2.4638400000000003, 9.614631999999999, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
4.702844670507544
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
18.194256
PromotedMB
0.47592
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7301.4067
DurationMSec
1.2479000000002998
PauseDurationMSec
1.6310999999996056
SuspendDurationMSec
0.18029999999998836
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
33.85150000000067
PauseStartRelativeMSec
7301.0487
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize18194256
TotalPromoted475920
Depth1
GenerationSize05089752
TotalPromotedSize0475600
GenerationSize12466568
TotalPromotedSize1320
GenerationSize29616672
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4814600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount9
GCHandleCount1749
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount36
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
33.538536
RatioPeakAfter
2.632533256649791
AllocRateMBSec
990.754796685504
HeapSizePeakMB
47.896984
UserAllocated
[ 33.538536, 0, 0, 0, 0 ]
HeapSizeBeforeMB
47.896984
GenSizeBeforeMB
[ 35.602416000000005, 2.4713119999999993, 9.616591999999999, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
4.596901016271618
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
13.072432
PromotedMB
0.479984
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7337.0219
DurationMSec
1.2377000000005864
PauseDurationMSec
1.5986999999995533
SuspendDurationMSec
0.1694999999999709
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.033400000000256
PauseStartRelativeMSec
7336.6894
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13072432
TotalPromoted479984
Depth1
GenerationSize00
TotalPromotedSize0479624
GenerationSize12426136
TotalPromotedSize1360
GenerationSize29616792
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4822840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount11
GCHandleCount1750
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount34
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
33.75121600000001
RatioPeakAfter
3.6759311503781404
AllocRateMBSec
991.7086156540267
HeapSizePeakMB
48.05336000000001
UserAllocated
[ 33.75121600000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
48.05336000000001
GenSizeBeforeMB
[ 35.763456000000005, 2.466568, 9.616672, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
4.486684758966106
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
20.816912
PromotedMB
0.517192
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7373.4183
DurationMSec
1.3770999999997002
PauseDurationMSec
1.7186000000001513
SuspendDurationMSec
0.15239999999994325
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.84059999999954
PauseStartRelativeMSec
7373.1016
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize20816912
TotalPromoted517192
Depth1
GenerationSize07708552
TotalPromotedSize0513608
GenerationSize12458720
TotalPromotedSize13584
GenerationSize29620136
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4822840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount11
GCHandleCount1749
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount34
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
34.210488000000005
RatioPeakAfter
2.312479776059005
AllocRateMBSec
981.914433161325
HeapSizePeakMB
48.138688
UserAllocated
[ 34.210488000000005, 0, 0, 0, 0 ]
HeapSizeBeforeMB
48.138688
GenSizeBeforeMB
[ 35.889096, 2.426136, 9.616792, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
4.700868727981372
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
13.122016
PromotedMB
0.488288
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7408.0912
DurationMSec
1.293999999999869
PauseDurationMSec
1.686399999999594
SuspendDurationMSec
0.19729999999981374
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
32.92330000000038
PauseStartRelativeMSec
7407.72
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13122016
TotalPromoted488288
Depth1
GenerationSize00
TotalPromotedSize0487088
GenerationSize12471416
TotalPromotedSize11200
GenerationSize29621096
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4822840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount11
GCHandleCount1748
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount37
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
32.734768
RatioPeakAfter
3.5847717301975552
AllocRateMBSec
994.2735995480291
HeapSizePeakMB
47.039432000000005
UserAllocated
[ 32.734768, 0, 0, 0, 0 ]
HeapSizeBeforeMB
47.039432000000005
GenSizeBeforeMB
[ 34.753912, 2.4587200000000005, 9.620136, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
4.872622415102111
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
20.67668
PromotedMB
0.53308
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7443.8699
DurationMSec
1.347700000000259
PauseDurationMSec
1.6825999999991836
SuspendDurationMSec
0.13189999999940483
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.17150000000038
PauseStartRelativeMSec
7443.5582
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize20676680
TotalPromoted533080
Depth1
GenerationSize07560544
TotalPromotedSize0530920
GenerationSize12463616
TotalPromotedSize12160
GenerationSize29623016
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4822840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount14
GCHandleCount1748
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount36
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
33.952736
RatioPeakAfter
2.325814782644022
AllocRateMBSec
993.5980568602382
HeapSizePeakMB
48.090128
UserAllocated
[ 33.952736, 0, 0, 0, 0 ]
HeapSizeBeforeMB
48.090128
GenSizeBeforeMB
[ 35.790952, 2.4714160000000005, 9.621096, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
4.692908202964805
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
17.991824
PromotedMB
0.508672
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7487.267
DurationMSec
1.3413000000000466
PauseDurationMSec
1.6989999999996144
SuspendDurationMSec
0.16049999999995634
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
41.71219999999994
PauseStartRelativeMSec
7486.9313
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize17991824
TotalPromoted508672
Depth1
GenerationSize04839488
TotalPromotedSize0507472
GenerationSize12498856
TotalPromotedSize11200
GenerationSize29623976
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4822840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount13
GCHandleCount1749
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount37
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
34.151744
RatioPeakAfter
2.6738656403041734
AllocRateMBSec
818.7471291372799
HeapSizePeakMB
48.10772
UserAllocated
[ 34.151744, 0, 0, 0, 0 ]
HeapSizeBeforeMB
48.10772
GenSizeBeforeMB
[ 35.814423999999995, 2.463616, 9.623016, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
3.913736547249631
(1090 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.4293125225225694
MeanSizeAfterMB
17.762601210810814
MeanSizePeakMB
73.17264622702697
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1110
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
13.504799999999705
TotalPauseTimeMSec
1586.536900000052
MaxSuspendDurationMSec
0.2706000000007407
MaxSizePeakMB
86.56599200000001
MaxAllocRateMBSec
2854.2945745741795
TotalAllocatedMB
64774.975944000005
TotalCpuMSec
0
TotalPromotedMB
799.3905360000001
TotalSizeAfterMB
19716.487344000005
TotalSizePeakMB
81221.63731199995
FinalizedObjects(empty)
ProcessDuration
31011.303
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.381628808446445
MeanSizeAfterMB
18.275193918552038
MeanSizePeakMB
79.91927812971332
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
663
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
9.030499999999847
TotalPauseTimeMSec
916.019899999993
MaxSuspendDurationMSec
0.2657999999973981
MaxSizePeakMB
86.56599200000001
MaxAllocRateMBSec
2847.547553312097
TotalAllocatedMB
43295.58358400003
TotalCpuMSec
0
TotalPromotedMB
559.1760239999993
TotalSizeAfterMB
12116.453568
TotalSizePeakMB
52986.48139999993
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.498484304932869
MeanSizeAfterMB
16.97974450224215
MeanSizePeakMB
63.20101569506726
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
446
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
13.504799999999705
TotalPauseTimeMSec
668.3240000000596
MaxSuspendDurationMSec
0.2706000000007407
MaxSizePeakMB
86.529736
MaxAllocRateMBSec
2854.2945745741795
TotalAllocatedMB
21479.392360000005
TotalCpuMSec
0
TotalPromotedMB
227.28615999999997
TotalSizeAfterMB
7572.9660479999975
TotalSizePeakMB
28187.653
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
2.1929999999993015
MeanSizeAfterMB
27.067728
MeanSizePeakMB
47.50291200000001
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
2.1929999999993015
TotalPauseTimeMSec
2.1929999999993015
MaxSuspendDurationMSec
0.2653999999993175
MaxSizePeakMB
47.50291200000001
MaxAllocRateMBSec
0
TotalAllocatedMB
0
TotalCpuMSec
0
TotalPromotedMB
12.928352
TotalSizeAfterMB
27.067728
TotalSizePeakMB
47.50291200000001
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking(empty)
BGCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
27.067728
PromotedMB
12.928352
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
8
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7078.7171
DurationMSec
15.581100000000333
PauseDurationMSec
2.1929999999993015
SuspendDurationMSec
0.2653999999993175
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
11.557600000000093
PauseStartRelativeMSec
7078.3986
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
2.074200000000019
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize27067728
TotalPromoted12928352
Depth2
GenerationSize014234176
TotalPromotedSize01037032
GenerationSize15438896
TotalPromotedSize15279960
GenerationSize26439312
TotalPromotedSize26404760
GenerationSize3206664
TotalPromotedSize3206600
GenerationSize4748680
TotalPromotedSize40
FinalizationPromotedSize216
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount7
GCHandleCount1758
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.7549648792096628
AllocRateMBSec
0
HeapSizePeakMB
47.50291200000001
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.501048
GenSizeBeforeMB
[ 3.416176, 5.438896, 6.439312, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
8.431637380959641
GCThreadIDsToHeapNumbers(empty)
DurationMSec
39678.7426
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="228272"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesEf_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 12:24:54 PM"\\r\\n SessionEndTime="8/21/2023 12:25:38 PM"\\r\\n SessionDuration="00:00:43...
Events
[ <Event MSec= "0.0000" PID="2916" PName="PerfView" TID="8240" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 12:25:35 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="594" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 12:24:54 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="2916" PName="PerfView" TID="8240" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "17.7906" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="2916" PName="PerfView" TID="8240" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "17.7599" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "17.7906" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "17.8109" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "17.8109" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", + "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337159073805.9
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="2916" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="174.8775" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmpB6D8.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", + "
Count104
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="8240" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337159073805.9" /> ... (more) ]
Count1380
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", + "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="100" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1190" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="158" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="28" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", + " ... (more) ]
Count78
(values)
indexvalue
0\r\n", + "
1\r\n", + "
2\r\n", + "
3\r\n", + "
4\r\n", + "
5\r\n", + "
6\r\n", + "
7\r\n", + "
8\r\n", + "
9\r\n", + "
10\r\n", + "
11\r\n", + "
12\r\n", + "
13\r\n", + "
14\r\n", + "
15\r\n", + "
16\r\n", + "
17\r\n", + "
18\r\n", + "
19\r\n", + "
... (more)
MaxEventIndex228272
EventCount
228272
Size
42223084
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesEf_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", + "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", + "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", + "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", + "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", + " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", + " at lambda_method760(Closure, TraceLog)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 12:24:54Z
SessionEndTime2023-08-21 12:25:38Z
SessionEndTimeRelativeMSec
43676.6312
SessionDuration00:00:43.6766312
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [98, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [100, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [101, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesEf_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
Benchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\1apcayl1.p0r\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios DbFortunesEf --urls http://10.0.0.104:5000 --server Kestrel --kestrelTransport Sockets --protocol 
NumberOfHeapCountSwitches
5
Benchmark
FortunesEf
Id
datas_3 | FortunesEf
TotalSuspensionTimeMSec
114.75609999998778
PercentPauseTimeInGC
5.115995609729948
PercentTimeInGC
4.745949565550548
MeanHeapSizeBeforeMB
73.17264622702697
MaxHeapSizeMB
86.56599200000001
TotalAllocationsMB
64774.975944000005
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesEf_Windows.gc.etl.zip
ProcessName
Benchmarks
datas_3 | FortunesPlatformDapper
Submission#4+LoadInfo
WorkingSetMB
187
PrivateMemoryMB
161
Latency50thMS
1.2
Latency75thMS
1.5
Latency90thMS
2.19
Latency99thMS
9.77
MeanLatencyMS
1.51
ProcessId
7660
RequestsPerMSec
388.782
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
PlatformBenchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\t1uyvzyb.rhh\\src\\BenchmarksApps\\TechEmpower\\PlatformBenchmarks\\published\\PlatformBenchmarks.exe"  
ProcessID
7660
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.294
PromotedMB
1.031976
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
702.044
DurationMSec
4.061500000000024
PauseDurationMSec
4.2812999999999874
SuspendDurationMSec
0.005199999999945248
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
701.8681
PauseStartRelativeMSec
701.8681
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1294000
TotalPromoted1031976
Depth0
GenerationSize0584
TotalPromotedSize01031976
GenerationSize11042120
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize45384
FinalizationPromotedCount27
PinnedObjectCount1
SinkBlockCount1
GCHandleCount297
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
2.1191282843894896
AllocRateMBSec
0
HeapSizePeakMB
2.742152
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.742152
GenSizeBeforeMB
[ 2.621536, 0, 0, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
0.6062881310952027
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
1.826088
PromotedMB
1.56692
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
1008.7374
DurationMSec
3.6336000000000013
PauseDurationMSec
3.665200000000027
SuspendDurationMSec
0.0036999999999807187
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
302.60630000000003
PauseStartRelativeMSec
1008.7128
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1826088
TotalPromoted1566920
Depth1
GenerationSize0584
TotalPromotedSize0589152
GenerationSize1596440
TotalPromotedSize1977768
GenerationSize2977768
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize760
FinalizationPromotedCount27
PinnedObjectCount1
SinkBlockCount1
GCHandleCount312
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.559096
RatioPeakAfter
2.0723470062779015
AllocRateMBSec
8.456849708680883
HeapSizePeakMB
3.784288
UserAllocated
[ 2.559096, 0, 0, 0, 0 ]
HeapSizeBeforeMB
3.784288
GenSizeBeforeMB
[ 2.621552, 1.04212, 0, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
1.1967159856532608
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
2.44076
PromotedMB
0.606568
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
1290.4807
DurationMSec
1.88149999999996
PauseDurationMSec
1.9044000000001233
SuspendDurationMSec
0.004599999999982174
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
278.0900999999999
PauseStartRelativeMSec
1290.4623
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize2440760
TotalPromoted606568
Depth0
GenerationSize0584
TotalPromotedSize0606568
GenerationSize11211112
TotalPromotedSize10
GenerationSize2977768
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount1
GCHandleCount288
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount11
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.571032
RatioPeakAfter
1.7684622822399578
AllocRateMBSec
9.24532013185655
HeapSizePeakMB
4.316392
UserAllocated
[ 2.571032, 0, 0, 0, 0 ]
HeapSizeBeforeMB
4.316392
GenSizeBeforeMB
[ 2.621568, 0.59644, 0.977768, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
0.6801562173543134
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
2.824776
PromotedMB
0.375576
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
1561.5936
DurationMSec
1.578899999999976
PauseDurationMSec
1.5968000000000302
SuspendDurationMSec
0.0036000000000058208
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
269.21720000000005
PauseStartRelativeMSec
1561.5803
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize2824776
TotalPromoted375576
Depth0
GenerationSize0584
TotalPromotedSize0375576
GenerationSize11595128
TotalPromotedSize10
GenerationSize2977768
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount1
GCHandleCount288
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount6
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.586288
RatioPeakAfter
1.7456761173275332
AllocRateMBSec
9.606696748944717
HeapSizePeakMB
4.931144
UserAllocated
[ 2.586288, 0, 0, 0, 0 ]
HeapSizeBeforeMB
4.931144
GenSizeBeforeMB
[ 2.621648, 1.211112, 0.977768, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
0.589629782802968
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
3.665296
PromotedMB
0.691656
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
5
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
1813.4496
DurationMSec
2.1539999999999964
PauseDurationMSec
2.1768999999999323
SuspendDurationMSec
0.005599999999958527
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
250.26130000000012
PauseStartRelativeMSec
1813.4347
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3665296
TotalPromoted691656
Depth0
GenerationSize0584
TotalPromotedSize0691656
GenerationSize12295440
TotalPromotedSize10
GenerationSize2977768
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount1
GCHandleCount288
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount5
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.7248159999999997
RatioPeakAfter
1.4883883866405334
AllocRateMBSec
10.887883983660272
HeapSizePeakMB
5.4553840000000005
UserAllocated
[ 2.58464, 0, 0, 0.140176, 0 ]
HeapSizeBeforeMB
5.4553840000000005
GenSizeBeforeMB
[ 2.621664, 1.595128, 0.977768, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
0.8623496760791084
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.139936
PromotedMB
0.46464
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
2109.6783
DurationMSec
2.252100000000155
PauseDurationMSec
2.2735999999999876
SuspendDurationMSec
0.0039000000001578883
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
294.0591999999999
PauseStartRelativeMSec
2109.6636
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4139936
TotalPromoted464640
Depth0
GenerationSize0584
TotalPromotedSize0464640
GenerationSize12770080
TotalPromotedSize10
GenerationSize2977768
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize4100
FinalizationPromotedCount2
PinnedObjectCount1
SinkBlockCount1
GCHandleCount369
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount8
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.585488
RatioPeakAfter
1.4868848214078676
AllocRateMBSec
8.792406427005176
HeapSizePeakMB
6.155608000000001
UserAllocated
[ 2.585488, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.155608000000001
GenSizeBeforeMB
[ 2.621576, 2.29544, 0.977768, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
0.767245475357432
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2N
HeapSizeAfterMB
6.314584
PromotedMB
4.54412
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7978.8389
DurationMSec
8.957100000000537
PauseDurationMSec
9.025899999999638
SuspendDurationMSec
0.03120000000035361
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
5866.8578
PauseStartRelativeMSec
7978.7891
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6314584
TotalPromoted4544120
Depth2
GenerationSize01410472
TotalPromotedSize01334008
GenerationSize11336984
TotalPromotedSize11975552
GenerationSize22953144
TotalPromotedSize2973800
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize4353160
TotalPromotedSize40
FinalizationPromotedSize11474
FinalizationPromotedCount11
PinnedObjectCount3
SinkBlockCount2
GCHandleCount666
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration2
Gen0ReductionCount7
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.408848
RatioPeakAfter
1.0506066591243384
AllocRateMBSec
0.4105857142131517
HeapSizePeakMB
6.634144000000001
UserAllocated
[ 2.408848, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.634144000000001
GenSizeBeforeMB
[ 2.625472, 2.77008, 0.977768, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
0.1536092349819592
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
9.026168
PromotedMB
1.445144
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7997.0836
DurationMSec
4.774500000000444
PauseDurationMSec
4.850000000000364
SuspendDurationMSec
0.04989999999997963
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
9.224900000000162
PauseStartRelativeMSec
7997.022
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9026168
TotalPromoted1445144
Depth0
GenerationSize02330816
TotalPromotedSize01445144
GenerationSize12769784
TotalPromotedSize10
GenerationSize22953144
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize144
FinalizationPromotedCount6
PinnedObjectCount4
SinkBlockCount2
GCHandleCount831
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount1
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.33448
RatioPeakAfter
0.797881005538563
AllocRateMBSec
253.0629058309531
HeapSizePeakMB
7.201808000000001
UserAllocated
[ 2.33448, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.201808000000001
GenSizeBeforeMB
[ 2.650856, 1.336984, 2.953144, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
34.458504145679065
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.735384
PromotedMB
1.558576
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
8008.3929
DurationMSec
3.5455000000001746
PauseDurationMSec
3.6338999999998123
SuspendDurationMSec
0.06040000000029977
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
6.462800000000243
PauseStartRelativeMSec
8008.3219
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10735384
TotalPromoted1558576
Depth0
GenerationSize00
TotalPromotedSize01558576
GenerationSize16533776
TotalPromotedSize10
GenerationSize22953144
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize4987640
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount3
GCHandleCount997
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount351
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.40612
RatioPeakAfter
0.8057764864302943
AllocRateMBSec
372.30302655194487
HeapSizePeakMB
8.650319999999999
UserAllocated
[ 2.40612, 0, 0, 0, 0 ]
HeapSizeBeforeMB
8.650319999999999
GenSizeBeforeMB
[ 2.666568, 2.769784, 2.953144, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
35.99096734576438
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
21.0096
PromotedMB
8.704536
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
8074.683
DurationMSec
7.940099999999802
PauseDurationMSec
8.29740000000038
SuspendDurationMSec
0.10040000000026339
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
62.533800000000156
PauseStartRelativeMSec
8074.4793
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize21009600
TotalPromoted8704536
Depth1
GenerationSize04538512
TotalPromotedSize05298240
GenerationSize17438360
TotalPromotedSize13406296
GenerationSize26338144
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize42433760
TotalPromotedSize40
FinalizationPromotedSize144
FinalizationPromotedCount6
PinnedObjectCount5
SinkBlockCount3
GCHandleCount1667
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration1
Gen0ReductionCount351
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated3560
FreeListConsumed3600
AllocedSinceLastGCMB
17.444703999999998
RatioPeakAfter
1.3160300053308964
AllocRateMBSec
278.9644000524509
HeapSizePeakMB
27.649264000000002
UserAllocated
[ 17.44464, 0, 0, 6.40000000000085E-05, 0 ]
HeapSizeBeforeMB
27.649264000000002
GenSizeBeforeMB
[ 17.90152, 6.533776, 2.953144, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
11.714329278623428
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
24.82644
PromotedMB
1.9278
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
8135.5788
DurationMSec
2.743899999999485
PauseDurationMSec
3.055199999999786
SuspendDurationMSec
0.20280000000002474
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
52.66579999999976
PauseStartRelativeMSec
8135.2901
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize24826440
TotalPromoted1927800
Depth0
GenerationSize06577608
TotalPromotedSize01927800
GenerationSize19063664
TotalPromotedSize10
GenerationSize26338144
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize42586200
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount6
GCHandleCount1669
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount111
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
18.09708
RatioPeakAfter
1.3026315492676355
AllocRateMBSec
343.62109756236646
HeapSizePeakMB
32.339704
UserAllocated
[ 18.09708, 0, 0, 0, 0 ]
HeapSizeBeforeMB
32.339704
GenSizeBeforeMB
[ 18.302376, 7.438359999999999, 6.338144, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
5.483031532097074
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
22.617696
PromotedMB
1.802112
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
8160.0555
DurationMSec
2.8312999999998283
PauseDurationMSec
3.1655000000000655
SuspendDurationMSec
0.22730000000046857
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
21.426399999999376
PauseStartRelativeMSec
8159.7503
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize22617696
TotalPromoted1802112
Depth0
GenerationSize02258192
TotalPromotedSize01802112
GenerationSize110717016
TotalPromotedSize10
GenerationSize26338144
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize43043520
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount9
GCHandleCount1697
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount49
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.844
RatioPeakAfter
1.4936333037635665
AllocRateMBSec
832.8043908449632
HeapSizePeakMB
33.782544
UserAllocated
[ 17.844, 0, 0, 0, 0 ]
HeapSizeBeforeMB
33.782544
GenSizeBeforeMB
[ 18.119912, 9.063664, 6.338144, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
12.872124561339861
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
21.855792
PromotedMB
1.770536
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
8184.2475
DurationMSec
2.5262999999995372
PauseDurationMSec
2.9106000000001586
SuspendDurationMSec
0.2682999999997264
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
21.001400000000103
PauseStartRelativeMSec
8183.8893
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize21855792
TotalPromoted1770536
Depth0
GenerationSize00
TotalPromotedSize01770536
GenerationSize112213304
TotalPromotedSize10
GenerationSize26338144
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize43043520
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount10
GCHandleCount1703
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount114
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.710056
RatioPeakAfter
1.6127408240341963
AllocRateMBSec
843.279781347906
HeapSizePeakMB
35.247727999999995
UserAllocated
[ 17.710056, 0, 0, 0, 0 ]
HeapSizeBeforeMB
35.247727999999995
GenSizeBeforeMB
[ 17.931744, 10.717016, 6.338144, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
12.172131147541513
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
26.636736
PromotedMB
11.750672
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
14
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
8207.4389
DurationMSec
11.207700000000841
PauseDurationMSec
1.814300000000003
SuspendDurationMSec
0.5090000000000146
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
7.6974000000009255
PauseStartRelativeMSec
8207.1117
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.5691999999999098
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize26636736
TotalPromoted11750672
Depth2
GenerationSize03034656
TotalPromotedSize01752432
GenerationSize113807152
TotalPromotedSize13406296
GenerationSize26338144
TotalPromotedSize26331184
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize43195960
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount12
GCHandleCount1728
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.3756892736407345
AllocRateMBSec
0
HeapSizePeakMB
36.643872
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
18.812272
GenSizeBeforeMB
[ 0, 12.213304, 6.338144, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
15.248111242189475
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
23.48672
PromotedMB
1.752432
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
8208.3648
DurationMSec
2.585300000000643
PauseDurationMSec
3.045700000000579
SuspendDurationMSec
0
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
21.589499999999134
PauseStartRelativeMSec
8208.3648
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize23486720
TotalPromoted1752432
Depth0
GenerationSize00
TotalPromotedSize01752432
GenerationSize113807152
TotalPromotedSize10
GenerationSize26338144
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize43080600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount10
GCHandleCount1729
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount105
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure0
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.874136
RatioPeakAfter
1.560195378494741
AllocRateMBSec
827.9087519396334
HeapSizePeakMB
36.643872
UserAllocated
[ 17.613312, 0, 0, 0.260824, 0 ]
HeapSizeBeforeMB
36.643872
GenSizeBeforeMB
[ 17.831599999999998, 12.213304, 6.338144, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
12.363203870886434
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
20.446296
PromotedMB
5.485128
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
8234.5014
DurationMSec
3.880800000000818
PauseDurationMSec
4.126299999999901
SuspendDurationMSec
0.13059999999859428
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
15.636000000000422
PauseStartRelativeMSec
8234.2849
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize20446296
TotalPromoted5485128
Depth1
GenerationSize00
TotalPromotedSize0860376
GenerationSize16089584
TotalPromotedSize14624752
GenerationSize210887568
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize43208320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount11
SinkBlockCount11
GCHandleCount1729
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration1
Gen0ReductionCount103
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated840
FreeListConsumed840
AllocedSinceLastGCMB
15.508527999999998
RatioPeakAfter
1.7820714324002742
AllocRateMBSec
991.8475313379113
HeapSizePeakMB
36.43676
UserAllocated
[ 15.508591999999998, 0, 0, -6.4E-05, 0 ]
HeapSizeBeforeMB
36.43676
GenSizeBeforeMB
[ 16.030640000000002, 13.807152, 6.338144, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
20.879654696061863
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
17.848848
PromotedMB
0.960944
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
8278.5256
DurationMSec
2.400599999999031
PauseDurationMSec
2.884600000001228
SuspendDurationMSec
0.27180000000043947
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
39.699399999999514
PauseStartRelativeMSec
8278.0832
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize17848848
TotalPromoted960944
Depth1
GenerationSize00
TotalPromotedSize0885216
GenerationSize13429672
TotalPromotedSize175728
GenerationSize210945912
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize43212440
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount15
GCHandleCount1729
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount2000143
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated600
FreeListConsumed600
AllocedSinceLastGCMB
33.81385600000001
RatioPeakAfter
2.875763858821589
AllocRateMBSec
851.7472808153378
HeapSizePeakMB
51.329072000000004
UserAllocated
[ 33.81379200000001, 0, 0, 6.4E-05, 0 ]
HeapSizeBeforeMB
51.329072000000004
GenSizeBeforeMB
[ 34.091096, 6.089584, 10.887568, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
6.773905692281557
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
16.638992
PromotedMB
0.91788
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
8322.028
DurationMSec
1.4411999999992986
PauseDurationMSec
1.8405000000002474
SuspendDurationMSec
0.21770000000105938
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
40.72869999999966
PauseStartRelativeMSec
8321.6562
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize16638992
TotalPromoted917880
Depth1
GenerationSize00
TotalPromotedSize0893696
GenerationSize12204200
TotalPromotedSize124184
GenerationSize210961528
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize43212440
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount19
GCHandleCount1730
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount55
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
35.369216
RatioPeakAfter
3.021218112251031
AllocRateMBSec
868.4101383054282
HeapSizePeakMB
50.270024
UserAllocated
[ 35.369216, 0, 0, 0, 0 ]
HeapSizeBeforeMB
50.270024
GenSizeBeforeMB
[ 35.633615999999996, 3.429672, 10.945912, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
4.323548481062015
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
16.696344
PromotedMB
0.889888
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
8364.0042
DurationMSec
1.2793000000001484
PauseDurationMSec
1.6515999999992346
SuspendDurationMSec
0.19620000000031723
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
40.18419999999969
PauseStartRelativeMSec
8363.6548
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize16696344
TotalPromoted889888
Depth1
GenerationSize00
TotalPromotedSize0881320
GenerationSize12261552
TotalPromotedSize18568
GenerationSize210961528
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize43212440
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount23
GCHandleCount1729
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount33
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
34.810736
RatioPeakAfter
2.9058141111611016
AllocRateMBSec
866.279184356047
HeapSizePeakMB
48.51647199999999
UserAllocated
[ 34.810736, 0, 0, 0, 0 ]
HeapSizeBeforeMB
48.51647199999999
GenSizeBeforeMB
[ 35.08991999999999, 2.2042, 10.961528000000001, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
3.9478150292316077
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
19.114256
PromotedMB
0.885376
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
8405.4777
DurationMSec
1.3168000000005122
PauseDurationMSec
1.7041000000008353
SuspendDurationMSec
0.2084000000013475
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
39.83089999999902
PauseStartRelativeMSec
8405.1156
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize19114256
TotalPromoted885376
Depth1
GenerationSize02447912
TotalPromotedSize0876808
GenerationSize12223240
TotalPromotedSize18568
GenerationSize210969840
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize43212440
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount26
GCHandleCount1728
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount30
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
35.000904
RatioPeakAfter
2.5492319449943537
AllocRateMBSec
878.7374626232613
HeapSizePeakMB
48.726672
UserAllocated
[ 35.000904, 0, 0, 0, 0 ]
HeapSizeBeforeMB
48.726672
GenSizeBeforeMB
[ 35.242768, 2.261552, 10.961528000000001, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
4.102804863370269
(939 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.6511039624609807
MeanSizeAfterMB
27.605196721584992
MeanSizePeakMB
83.14917735974976
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
959
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
9.025899999999638
TotalPauseTimeMSec
1583.4087000000804
MaxSuspendDurationMSec
7.019400000001042
MaxSizePeakMB
100.47995200000001
MaxAllocRateMBSec
2431.5378006209435
TotalAllocatedMB
58338.47213599994
TotalCpuMSec
0
TotalPromotedMB
1290.7445840000005
TotalSizeAfterMB
26473.38365600001
TotalSizePeakMB
79740.06108800002
FinalizedObjects(empty)
ProcessDuration
37585.7427
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.624078714859549
MeanSizeAfterMB
30.391437761713544
MeanSizePeakMB
88.43068538688094
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
747
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
7.846700000001874
TotalPauseTimeMSec
1213.1868000000832
MaxSuspendDurationMSec
6.07390000000305
MaxSizePeakMB
100.47995200000001
MaxAllocRateMBSec
2431.5378006209435
TotalAllocatedMB
47934.352935999996
TotalCpuMSec
0
TotalPromotedMB
1068.978696000001
TotalSizeAfterMB
22702.404008000016
TotalSizePeakMB
66057.72198400006
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.7108636363636425
MeanSizeAfterMB
17.640133167464118
MeanSizePeakMB
64.81622698564594
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
209
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
8.402099999999336
TotalPauseTimeMSec
357.5705000000013
MaxSuspendDurationMSec
7.019400000001042
MaxSizePeakMB
84.85144
MaxAllocRateMBSec
2422.9371184484644
TotalAllocatedMB
10401.710352000004
TotalCpuMSec
0
TotalPromotedMB
187.69304800000003
TotalSizeAfterMB
3686.787832000001
TotalSizePeakMB
13546.59144
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
4.2171333333320336
MeanSizeAfterMB
28.06393866666666
MeanSizePeakMB
45.24922133333333
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
3
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
9.025899999999638
TotalPauseTimeMSec
12.651399999996102
MaxSuspendDurationMSec
0.5090000000000146
MaxSizePeakMB
92.46964799999999
MaxAllocRateMBSec
0.4105857142131517
TotalAllocatedMB
2.408848
TotalCpuMSec
0
TotalPromotedMB
34.07284
TotalSizeAfterMB
84.19181599999999
TotalSizePeakMB
135.747664
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2N
HeapSizeAfterMB
6.314584
PromotedMB
4.54412
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7978.8389
DurationMSec
8.957100000000537
PauseDurationMSec
9.025899999999638
SuspendDurationMSec
0.03120000000035361
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
5866.8578
PauseStartRelativeMSec
7978.7891
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6314584
TotalPromoted4544120
Depth2
GenerationSize01410472
TotalPromotedSize01334008
GenerationSize11336984
TotalPromotedSize11975552
GenerationSize22953144
TotalPromotedSize2973800
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize4353160
TotalPromotedSize40
FinalizationPromotedSize11474
FinalizationPromotedCount11
PinnedObjectCount3
SinkBlockCount2
GCHandleCount666
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration2
Gen0ReductionCount7
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.408848
RatioPeakAfter
1.0506066591243384
AllocRateMBSec
0.4105857142131517
HeapSizePeakMB
6.634144000000001
UserAllocated
[ 2.408848, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.634144000000001
GenSizeBeforeMB
[ 2.625472, 2.77008, 0.977768, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
0.1536092349819592
BGCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
26.636736
PromotedMB
11.750672
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
14
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
8207.4389
DurationMSec
11.207700000000841
PauseDurationMSec
1.814300000000003
SuspendDurationMSec
0.5090000000000146
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
7.6974000000009255
PauseStartRelativeMSec
8207.1117
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.5691999999999098
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize26636736
TotalPromoted11750672
Depth2
GenerationSize03034656
TotalPromotedSize01752432
GenerationSize113807152
TotalPromotedSize13406296
GenerationSize26338144
TotalPromotedSize26331184
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize43195960
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount12
GCHandleCount1728
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.3756892736407345
AllocRateMBSec
0
HeapSizePeakMB
36.643872
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
18.812272
GenSizeBeforeMB
[ 0, 12.213304, 6.338144, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
15.248111242189475
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
51.240496
PromotedMB
17.778048
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
504
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
23391.5776
DurationMSec
20.124799999997776
PauseDurationMSec
1.811199999996461
SuspendDurationMSec
0.27339999999821885
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
16.915099999998347
PauseStartRelativeMSec
23391.1413
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.6855999999970663
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize51240496
TotalPromoted17778048
Depth2
GenerationSize020578592
TotalPromotedSize01475584
GenerationSize18474984
TotalPromotedSize16479872
GenerationSize217584720
TotalPromotedSize29561832
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize44341376
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount39
GCHandleCount1769
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.8046204704966164
AllocRateMBSec
0
HeapSizePeakMB
92.46964799999999
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
26.185304000000002
GenSizeBeforeMB
[ 1.367328, 6.972432, 17.58472, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
8.038850047820643
GCThreadIDsToHeapNumbers(empty)
DurationMSec
40329.1735
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="204172"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesPlatformDapper_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 1:23:31 PM"\\r\\n SessionEndTime="8/21/2023 1:24:15 PM"\\r\\n SessionDuration...
Events
[ <Event MSec= "0.0000" PID="6196" PName="PerfView" TID="1680" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 1:24:13 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="539" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 1:23:31 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="6196" PName="PerfView" TID="1680" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "10.1919" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="6196" PName="PerfView" TID="1680" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "10.1601" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "10.1919" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "10.2127" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "10.2127" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", + "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337155556909.1
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="6196" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="153.8256" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmp611F.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", + "
Count108
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="1680" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337155556909.1" /> ... (more) ]
Count1404
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", + "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="100" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1207" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="167" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="28" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", + " ... (more) ]
Count78
(values)
indexvalue
0\r\n", + "
1\r\n", + "
2\r\n", + "
3\r\n", + "
4\r\n", + "
5\r\n", + "
6\r\n", + "
7\r\n", + "
8\r\n", + "
9\r\n", + "
10\r\n", + "
11\r\n", + "
12\r\n", + "
13\r\n", + "
14\r\n", + "
15\r\n", + "
16\r\n", + "
17\r\n", + "
18\r\n", + "
19\r\n", + "
... (more)
MaxEventIndex204172
EventCount
204172
Size
37937987
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesPlatformDapper_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", + "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", + "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", + "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", + "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", + " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", + " at lambda_method760(Closure, TraceLog)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 13:23:31Z
SessionEndTime2023-08-21 13:24:15Z
SessionEndTimeRelativeMSec
44307.6731
SessionDuration00:00:44.3076731
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [98, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [100, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [101, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesPlatformDapper_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
PlatformBenchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\t1uyvzyb.rhh\\src\\BenchmarksApps\\TechEmpower\\PlatformBenchmarks\\published\\PlatformBenchmarks.exe"  
NumberOfHeapCountSwitches
8
Benchmark
FortunesPlatformDapper
Id
datas_3 | FortunesPlatformDapper
TotalSuspensionTimeMSec
164.21770000013737
PercentPauseTimeInGC
4.212790771858502
PercentTimeInGC
3.7758758988150656
MeanHeapSizeBeforeMB
83.14917735974976
MaxHeapSizeMB
100.47995200000001
TotalAllocationsMB
58338.47213599994
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesPlatformDapper_Windows.gc.etl.zip
ProcessName
PlatformBenchmarks
datas_3 | FortunesPlatformEF
Submission#4+LoadInfo
WorkingSetMB
205
PrivateMemoryMB
165
Latency50thMS
1.26
Latency75thMS
1.57
Latency90thMS
2.39
Latency99thMS
7.31
MeanLatencyMS
1.52
ProcessId
5128
RequestsPerMSec
367.082
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
PlatformBenchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\eajiv1lf.mwy\\src\\BenchmarksApps\\TechEmpower\\PlatformBenchmarks\\published\\PlatformBenchmarks.exe"  
ProcessID
5128
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.306576
PromotedMB
1.044504
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
738.4905
DurationMSec
4.133199999999988
PauseDurationMSec
4.3547000000000935
SuspendDurationMSec
0.004900000000020555
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
738.3109
PauseStartRelativeMSec
738.3109
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1306576
TotalPromoted1044504
Depth0
GenerationSize0584
TotalPromotedSize01044504
GenerationSize11054696
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize45384
FinalizationPromotedCount27
PinnedObjectCount1
SinkBlockCount1
GCHandleCount296
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
2.098719094794333
AllocRateMBSec
0
HeapSizePeakMB
2.742136
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.742136
GenSizeBeforeMB
[ 2.62152, 0, 0, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
0.586360806263289
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
1.71672
PromotedMB
1.458632
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
1029.3298
DurationMSec
3.42229999999995
PauseDurationMSec
3.456899999999905
SuspendDurationMSec
0.004500000000007276
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
286.6775000000001
PauseStartRelativeMSec
1029.3022
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1716720
TotalPromoted1458632
Depth1
GenerationSize0584
TotalPromotedSize0480672
GenerationSize1486880
TotalPromotedSize1977960
GenerationSize2977960
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize760
FinalizationPromotedCount27
PinnedObjectCount1
SinkBlockCount1
GCHandleCount309
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.581392
RatioPeakAfter
2.211752644578033
AllocRateMBSec
9.004515527029499
HeapSizePeakMB
3.7969600000000003
UserAllocated
[ 2.581392, 0, 0, 0, 0 ]
HeapSizeBeforeMB
3.7969600000000003
GenSizeBeforeMB
[ 2.621648, 1.054696, 0, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
1.1914822923444806
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
2.310304
PromotedMB
0.585456
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
1300.7953
DurationMSec
1.7543000000000575
PauseDurationMSec
1.774900000000116
SuspendDurationMSec
0.004100000000107684
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
268.02600000000007
PauseStartRelativeMSec
1300.779
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize2310304
TotalPromoted585456
Depth0
GenerationSize0584
TotalPromotedSize0585456
GenerationSize11080464
TotalPromotedSize10
GenerationSize2977960
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount1
GCHandleCount285
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount11
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.584312
RatioPeakAfter
1.8210174938016817
AllocRateMBSec
9.642019804048859
HeapSizePeakMB
4.207104
UserAllocated
[ 2.584312, 0, 0, 0, 0 ]
HeapSizeBeforeMB
4.207104
GenSizeBeforeMB
[ 2.621648, 0.48688, 0.97796, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
0.6578554778727999
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
2.69228
PromotedMB
0.373584
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
1593.8476
DurationMSec
1.5087999999998374
PauseDurationMSec
1.530100000000175
SuspendDurationMSec
0.005400000000008731
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
291.2812999999999
PauseStartRelativeMSec
1593.8319
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize2692280
TotalPromoted373584
Depth0
GenerationSize0584
TotalPromotedSize0373584
GenerationSize11462440
TotalPromotedSize10
GenerationSize2977960
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount1
GCHandleCount285
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount6
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.577816
RatioPeakAfter
1.7831013118992085
AllocRateMBSec
8.849919304809477
HeapSizePeakMB
4.800608
UserAllocated
[ 2.577816, 0, 0, 0, 0 ]
HeapSizeBeforeMB
4.800608
GenSizeBeforeMB
[ 2.621568, 1.080464, 0.97796, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
0.522554791241111
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
3.51984
PromotedMB
0.678984
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
5
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
1838.7106
DurationMSec
2.0628999999998996
PauseDurationMSec
2.088999999999942
SuspendDurationMSec
0.006300000000010186
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
243.33490000000006
PauseStartRelativeMSec
1838.6922
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3519840
TotalPromoted678984
Depth0
GenerationSize0584
TotalPromotedSize0678984
GenerationSize12149792
TotalPromotedSize10
GenerationSize2977960
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount1
GCHandleCount286
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount5
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.7197039999999997
RatioPeakAfter
1.5122232828764945
AllocRateMBSec
11.176793793245437
HeapSizePeakMB
5.322784
UserAllocated
[ 2.579528, 0, 0, 0.140176, 0 ]
HeapSizeBeforeMB
5.322784
GenSizeBeforeMB
[ 2.62156, 1.46244, 0.97796, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
0.851180345516448
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.461248
PromotedMB
0.60376
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
2157.3384
DurationMSec
2.408300000000054
PauseDurationMSec
2.435599999999795
SuspendDurationMSec
0.004299999999602733
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
316.5454000000002
PauseStartRelativeMSec
2157.3198
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6461248
TotalPromoted603760
Depth0
GenerationSize02327064
TotalPromotedSize0603760
GenerationSize12764720
TotalPromotedSize10
GenerationSize2977960
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize12712
FinalizationPromotedCount6
PinnedObjectCount2
SinkBlockCount2
GCHandleCount414
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount8
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.567096
RatioPeakAfter
0.9301868617332133
AllocRateMBSec
8.109724545041558
HeapSizePeakMB
6.010168000000001
UserAllocated
[ 2.567096, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.010168000000001
GenSizeBeforeMB
[ 2.621592, 2.149792, 0.97796, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
0.7635564500706296
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2N
HeapSizeAfterMB
4.761616
PromotedMB
4.541288
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
8730.8448
DurationMSec
11.362499999999272
PauseDurationMSec
11.480899999998655
SuspendDurationMSec
0.042399999998451676
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
6571.0275
PauseStartRelativeMSec
8730.7751
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4761616
TotalPromoted4541288
Depth2
GenerationSize0584
TotalPromotedSize01156424
GenerationSize11172664
TotalPromotedSize12054600
GenerationSize23032560
TotalPromotedSize2971152
GenerationSize3359208
TotalPromotedSize3359112
GenerationSize4196600
TotalPromotedSize40
FinalizationPromotedSize42113
FinalizationPromotedCount31
PinnedObjectCount1
SinkBlockCount4
GCHandleCount880
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration2
Gen0ReductionCount7
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.608256
RatioPeakAfter
1.4138796576624408
AllocRateMBSec
0.396932747580192
HeapSizePeakMB
6.732352000000001
UserAllocated
[ 2.509904, 0, 0, 0.098352, 0 ]
HeapSizeBeforeMB
6.732352000000001
GenSizeBeforeMB
[ 2.630464, 2.76472, 0.97796, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
0.17441527305910703
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
8.871808
PromotedMB
1.524584
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
8756.6874
DurationMSec
8.261999999998807
PauseDurationMSec
8.44839999999931
SuspendDurationMSec
0.1602999999995518
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
14.305700000000797
PauseStartRelativeMSec
8756.5141
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8871808
TotalPromoted1524584
Depth0
GenerationSize02480304
TotalPromotedSize01524584
GenerationSize12708376
TotalPromotedSize10
GenerationSize23032560
TotalPromotedSize20
GenerationSize3359208
TotalPromotedSize30
GenerationSize4291360
TotalPromotedSize40
FinalizationPromotedSize423923
FinalizationPromotedCount338
PinnedObjectCount2
SinkBlockCount4
GCHandleCount1430
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount1
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.308016
RatioPeakAfter
0.8099823621070249
AllocRateMBSec
161.3354117589402
HeapSizePeakMB
7.186008
UserAllocated
[ 2.308016, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.186008
GenSizeBeforeMB
[ 2.621576, 1.172664, 3.03256, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
37.129132771673106
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.56024
PromotedMB
1.468648
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
8772.8221
DurationMSec
7.133700000000317
PauseDurationMSec
7.533600000000661
SuspendDurationMSec
0.3629000000000815
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
7.488199999999779
PauseStartRelativeMSec
8772.4386
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10560240
TotalPromoted1468648
Depth0
GenerationSize02549320
TotalPromotedSize01468648
GenerationSize14175352
TotalPromotedSize10
GenerationSize23032560
TotalPromotedSize20
GenerationSize3359208
TotalPromotedSize30
GenerationSize4443800
TotalPromotedSize40
FinalizationPromotedSize111451
FinalizationPromotedCount349
PinnedObjectCount3
SinkBlockCount5
GCHandleCount1678
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount373
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.278496
RatioPeakAfter
0.8271516556441899
AllocRateMBSec
304.2781976977201
HeapSizePeakMB
8.73492
UserAllocated
[ 2.278496, 0, 0, 0, 0 ]
HeapSizeBeforeMB
8.73492
GenSizeBeforeMB
[ 2.634776, 2.708376, 3.03256, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
50.15111371473752
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
19.438144
PromotedMB
11.982552
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
8849.8307
DurationMSec
14.08849999999984
PauseDurationMSec
14.53019999999924
SuspendDurationMSec
0.15719999999964784
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
69.61679999999978
PauseStartRelativeMSec
8849.5735
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize19438144
TotalPromoted11982552
Depth1
GenerationSize02560184
TotalPromotedSize08700216
GenerationSize18781376
TotalPromotedSize13282336
GenerationSize26317136
TotalPromotedSize20
GenerationSize3359208
TotalPromotedSize30
GenerationSize41420240
TotalPromotedSize40
FinalizationPromotedSize23236
FinalizationPromotedCount381
PinnedObjectCount4
SinkBlockCount6
GCHandleCount2102
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration1
Gen0ReductionCount474
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated6680
FreeListConsumed6808
AllocedSinceLastGCMB
17.096208
RatioPeakAfter
1.3236132009311175
AllocRateMBSec
245.5758954735072
HeapSizePeakMB
25.728583999999998
UserAllocated
[ 17.096112, 0, 0, 9.60000000000405E-05, 0 ]
HeapSizeBeforeMB
25.728583999999998
GenSizeBeforeMB
[ 18.161464, 4.175352, 3.03256, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
17.26763877500019
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
24.947584
PromotedMB
1.395848
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
8961.9021
DurationMSec
3.1838000000007014
PauseDurationMSec
3.529399999999441
SuspendDurationMSec
0.20759999999972933
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
97.66140000000087
PauseStartRelativeMSec
8961.5822
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize24947584
TotalPromoted1395848
Depth0
GenerationSize06370912
TotalPromotedSize01395848
GenerationSize110150488
TotalPromotedSize10
GenerationSize26317136
TotalPromotedSize20
GenerationSize3359208
TotalPromotedSize30
GenerationSize41749840
TotalPromotedSize40
FinalizationPromotedSize144
FinalizationPromotedCount6
PinnedObjectCount6
SinkBlockCount8
GCHandleCount1756
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount167
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.75012
RatioPeakAfter
1.3402025623002214
AllocRateMBSec
181.75164394530327
HeapSizePeakMB
33.434816000000005
UserAllocated
[ 17.75012, 0, 0, 0, 0 ]
HeapSizeBeforeMB
33.434816000000005
GenSizeBeforeMB
[ 17.977096000000003, 8.781376, 6.317136, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
3.487866485885506
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
21.733328
PromotedMB
1.065216
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
8990.15
DurationMSec
2.1635000000005675
PauseDurationMSec
2.4544999999998254
SuspendDurationMSec
0.17929999999978463
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
24.795599999999467
PauseStartRelativeMSec
8989.8832
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize21733328
TotalPromoted1065216
Depth0
GenerationSize02958896
TotalPromotedSize01065216
GenerationSize110150488
TotalPromotedSize10
GenerationSize26317136
TotalPromotedSize20
GenerationSize3359208
TotalPromotedSize30
GenerationSize41947600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount10
GCHandleCount1755
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount31
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.877119999999998
RatioPeakAfter
1.6082687382254572
AllocRateMBSec
720.979528626062
HeapSizePeakMB
34.953032
UserAllocated
[ 17.877119999999998, 0, 0, 0, 0 ]
HeapSizeBeforeMB
34.953032
GenSizeBeforeMB
[ 18.126199999999997, 10.150488, 6.317136, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
9.007306395205482
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
24.107728
PromotedMB
10.967936
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
13
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
9015.8329
DurationMSec
16.961100000000442
PauseDurationMSec
2.6670000000012806
SuspendDurationMSec
0.45930000000043947
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
14.093199999999342
PauseStartRelativeMSec
9015.5511
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
2.474100000001272
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize24107728
TotalPromoted10967936
Depth2
GenerationSize05296216
TotalPromotedSize01057816
GenerationSize110150488
TotalPromotedSize13282336
GenerationSize26317136
TotalPromotedSize26268672
GenerationSize3359208
TotalPromotedSize3359112
GenerationSize41984680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount15
PinnedObjectCount0
SinkBlockCount13
GCHandleCount1762
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.4479128020691125
AllocRateMBSec
0
HeapSizePeakMB
34.905888000000004
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
19.785727999999995
GenSizeBeforeMB
[ 2.958896, 10.150488, 6.317136, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
12.711058410845716
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
19.859976
PromotedMB
1.057816
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
9016.8139
DurationMSec
1.8934000000008382
PauseDurationMSec
2.478500000001077
SuspendDurationMSec
0
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
24.498999999999796
PauseStartRelativeMSec
9016.8139
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize19859976
TotalPromoted1057816
Depth0
GenerationSize01077304
TotalPromotedSize01057816
GenerationSize110150488
TotalPromotedSize10
GenerationSize26317136
TotalPromotedSize20
GenerationSize3359208
TotalPromotedSize30
GenerationSize41955840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount11
GCHandleCount1768
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount78
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure0
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
18.222864
RatioPeakAfter
1.7575997070691327
AllocRateMBSec
743.8207273766338
HeapSizePeakMB
34.905888000000004
UserAllocated
[ 17.863656000000002, 0, 0, 0.359208, 0 ]
HeapSizeBeforeMB
34.905888000000004
GenSizeBeforeMB
[ 18.079056, 10.150488, 6.317136, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
9.187285701050863
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
22.591888
PromotedMB
9.053696
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
9047.1128
DurationMSec
6.347899999998845
PauseDurationMSec
6.706900000001042
SuspendDurationMSec
0.23220000000037544
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
13.985199999999168
PauseStartRelativeMSec
9046.7869
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize22591888
TotalPromoted9053696
Depth1
GenerationSize0218392
TotalPromotedSize0527376
GenerationSize15262240
TotalPromotedSize18526320
GenerationSize214763248
TotalPromotedSize20
GenerationSize3359208
TotalPromotedSize30
GenerationSize41988800
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount10
SinkBlockCount13
GCHandleCount1756
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration1
Gen0ReductionCount69
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated30760
FreeListConsumed30880
AllocedSinceLastGCMB
13.928136000000002
RatioPeakAfter
1.426051333115674
AllocRateMBSec
995.9196865258152
HeapSizePeakMB
32.217192
UserAllocated
[ 13.928232000000001, 0, 0, -9.6E-05, 0 ]
HeapSizeBeforeMB
32.217192
GenSizeBeforeMB
[ 15.39036, 10.150488, 6.317136, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
32.412853214516524
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
26.222816
PromotedMB
24.595672
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
16
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
9077.9143
DurationMSec
12.903199999998833
PauseDurationMSec
2.064799999998286
SuspendDurationMSec
0.4404999999987922
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
10.787800000000061
PauseStartRelativeMSec
9077.6738
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.8589999999985594
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize26222816
TotalPromoted24595672
Depth2
GenerationSize03394848
TotalPromotedSize0966952
GenerationSize15712592
TotalPromotedSize18526320
GenerationSize214763248
TotalPromotedSize214743288
GenerationSize3359208
TotalPromotedSize3359112
GenerationSize41992920
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount16
GCHandleCount1763
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.4642360301807402
AllocRateMBSec
0
HeapSizePeakMB
38.396392
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
20.603088
GenSizeBeforeMB
[ 0.218392, 5.26224, 14.763248, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
12.387035292095769
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
22.953768
PromotedMB
0.966952
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
9077.9289
DurationMSec
2.101699999999255
PauseDurationMSec
2.5625999999992928
SuspendDurationMSec
0
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
24.466700000000856
PauseStartRelativeMSec
9077.9289
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize22953768
TotalPromoted966952
Depth0
GenerationSize0129920
TotalPromotedSize0966952
GenerationSize15712592
TotalPromotedSize10
GenerationSize214763248
TotalPromotedSize20
GenerationSize3359208
TotalPromotedSize30
GenerationSize41988800
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount16
GCHandleCount1756
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount185
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure0
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
18.166800000000002
RatioPeakAfter
1.6727707625170734
AllocRateMBSec
742.5112499846472
HeapSizePeakMB
38.396392
UserAllocated
[ 17.807688000000002, 0, 0, 0.359112, 0 ]
HeapSizeBeforeMB
38.396392
GenSizeBeforeMB
[ 18.011696, 5.26224, 14.763247999999999, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
9.48082266281139
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
19.223608
PromotedMB
0.552008
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
9106.844
DurationMSec
1.5306000000000495
PauseDurationMSec
1.8537999999989552
SuspendDurationMSec
0.26349999999911233
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
15.725400000001173
PauseStartRelativeMSec
9106.5452
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize19223608
TotalPromoted552008
Depth1
GenerationSize0475984
TotalPromotedSize0423256
GenerationSize11632248
TotalPromotedSize1128752
GenerationSize214763248
TotalPromotedSize20
GenerationSize3359208
TotalPromotedSize30
GenerationSize41992920
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount6
SinkBlockCount17
GCHandleCount1756
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration1
Gen0ReductionCount77
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
15.72392
RatioPeakAfter
1.9257284064469067
AllocRateMBSec
999.9058847468953
HeapSizePeakMB
37.019448000000004
UserAllocated
[ 15.72392, 0, 0, 0, 0 ]
HeapSizeBeforeMB
37.019448000000004
GenSizeBeforeMB
[ 16.1844, 5.712592000000001, 14.763247999999999, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
10.54541731136196
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
19.262152
PromotedMB
0.570024
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
9142.7297
DurationMSec
1.420799999999872
PauseDurationMSec
1.8619999999991705
SuspendDurationMSec
0.24530000000049768
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
33.95470000000023
PauseStartRelativeMSec
9142.3305
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize19262152
TotalPromoted570024
Depth1
GenerationSize0129920
TotalPromotedSize0441272
GenerationSize11766688
TotalPromotedSize1128752
GenerationSize215013416
TotalPromotedSize20
GenerationSize3359208
TotalPromotedSize30
GenerationSize41992920
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount21
GCHandleCount1756
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps11
CondemnedGeneration1
Gen0ReductionCount54
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated2240
FreeListConsumed2240
AllocedSinceLastGCMB
24.799352000000003
RatioPeakAfter
2.193041359034027
AllocRateMBSec
730.3658109186603
HeapSizePeakMB
42.242696
UserAllocated
[ 24.799256000000003, 0, 0, 9.6E-05, 0 ]
HeapSizeBeforeMB
42.242696
GenSizeBeforeMB
[ 25.487992, 1.6322480000000001, 14.763248, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
5.198692230158562
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
19.19928
PromotedMB
0.40936
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
9183.4031
DurationMSec
1.0976000000009662
PauseDurationMSec
1.4197999999996682
SuspendDurationMSec
0.1738999999997759
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
38.95329999999922
PauseStartRelativeMSec
9183.105
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize19199280
TotalPromoted409360
Depth1
GenerationSize0129920
TotalPromotedSize0398696
GenerationSize11697392
TotalPromotedSize110664
GenerationSize215015720
TotalPromotedSize20
GenerationSize3359208
TotalPromotedSize30
GenerationSize41997040
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount22
GCHandleCount1755
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps11
CondemnedGeneration1
Gen0ReductionCount39
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated40
FreeListConsumed40
AllocedSinceLastGCMB
27.813567999999997
RatioPeakAfter
2.3555479163801976
AllocRateMBSec
714.0234075161939
HeapSizePeakMB
45.224824000000005
UserAllocated
[ 27.813567999999997, 0, 0, 0, 0 ]
HeapSizeBeforeMB
45.224824000000005
GenSizeBeforeMB
[ 28.085512, 1.766688, 15.013416000000001, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
3.516697999409774
(1178 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.5748843906509737
MeanSizeAfterMB
34.97274916193652
MeanSizePeakMB
71.94718968948258
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1198
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
14.53019999999924
TotalPauseTimeMSec
1886.7114999998666
MaxSuspendDurationMSec
5.7128000000011525
MaxSizePeakMB
97.563216
MaxAllocRateMBSec
2401.459755122059
TotalAllocatedMB
49138.79155199996
TotalCpuMSec
0
TotalPromotedMB
1558.6049279999997
TotalSizeAfterMB
41897.35349599995
TotalSizePeakMB
86192.73324800014
FinalizedObjects(empty)
ProcessDuration
38295.6826
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.5916083715595069
MeanSizeAfterMB
36.27077295412846
MeanSizePeakMB
72.24469395412851
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
872
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
8.44839999999931
TotalPauseTimeMSec
1387.88249999989
MaxSuspendDurationMSec
5.7128000000011525
MaxSizePeakMB
97.563216
MaxAllocRateMBSec
2080.0175653086244
TotalAllocatedMB
35895.42004800003
TotalCpuMSec
0
TotalPromotedMB
1208.9146799999992
TotalSizeAfterMB
31628.114016000018
TotalSizePeakMB
62997.37312800006
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.4891545171338945
MeanSizeAfterMB
31.497972984423715
MeanSizePeakMB
71.53306472274146
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
321
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
14.53019999999924
TotalPauseTimeMSec
478.0185999999801
MaxSuspendDurationMSec
5.175200000001496
MaxSizePeakMB
95.92547199999998
MaxAllocRateMBSec
2401.459755122059
TotalAllocatedMB
13240.763248000005
TotalCpuMSec
0
TotalPromotedMB
255.11983999999998
TotalSizeAfterMB
10110.849328000013
TotalSizePeakMB
22962.113776000006
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
4.1620799999993325
MeanSizeAfterMB
31.6780304
MeanSizePeakMB
46.6492688
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
5
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
11.480899999998655
TotalPauseTimeMSec
20.810399999996662
MaxSuspendDurationMSec
0.45930000000043947
MaxSizePeakMB
80.79808799999999
MaxAllocRateMBSec
0.396932747580192
TotalAllocatedMB
2.608256
TotalCpuMSec
0
TotalPromotedMB
94.57040799999999
TotalSizeAfterMB
158.390152
TotalSizePeakMB
233.24634400000002
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2N
HeapSizeAfterMB
4.761616
PromotedMB
4.541288
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
8730.8448
DurationMSec
11.362499999999272
PauseDurationMSec
11.480899999998655
SuspendDurationMSec
0.042399999998451676
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
6571.0275
PauseStartRelativeMSec
8730.7751
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4761616
TotalPromoted4541288
Depth2
GenerationSize0584
TotalPromotedSize01156424
GenerationSize11172664
TotalPromotedSize12054600
GenerationSize23032560
TotalPromotedSize2971152
GenerationSize3359208
TotalPromotedSize3359112
GenerationSize4196600
TotalPromotedSize40
FinalizationPromotedSize42113
FinalizationPromotedCount31
PinnedObjectCount1
SinkBlockCount4
GCHandleCount880
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration2
Gen0ReductionCount7
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.608256
RatioPeakAfter
1.4138796576624408
AllocRateMBSec
0.396932747580192
HeapSizePeakMB
6.732352000000001
UserAllocated
[ 2.509904, 0, 0, 0.098352, 0 ]
HeapSizeBeforeMB
6.732352000000001
GenSizeBeforeMB
[ 2.630464, 2.76472, 0.97796, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
0.17441527305910703
BGCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
24.107728
PromotedMB
10.967936
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
13
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
9015.8329
DurationMSec
16.961100000000442
PauseDurationMSec
2.6670000000012806
SuspendDurationMSec
0.45930000000043947
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
14.093199999999342
PauseStartRelativeMSec
9015.5511
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
2.474100000001272
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize24107728
TotalPromoted10967936
Depth2
GenerationSize05296216
TotalPromotedSize01057816
GenerationSize110150488
TotalPromotedSize13282336
GenerationSize26317136
TotalPromotedSize26268672
GenerationSize3359208
TotalPromotedSize3359112
GenerationSize41984680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount15
PinnedObjectCount0
SinkBlockCount13
GCHandleCount1762
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.4479128020691125
AllocRateMBSec
0
HeapSizePeakMB
34.905888000000004
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
19.785727999999995
GenSizeBeforeMB
[ 2.958896, 10.150488, 6.317136, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
12.711058410845716
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
26.222816
PromotedMB
24.595672
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
16
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
9077.9143
DurationMSec
12.903199999998833
PauseDurationMSec
2.064799999998286
SuspendDurationMSec
0.4404999999987922
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
10.787800000000061
PauseStartRelativeMSec
9077.6738
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.8589999999985594
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize26222816
TotalPromoted24595672
Depth2
GenerationSize03394848
TotalPromotedSize0966952
GenerationSize15712592
TotalPromotedSize18526320
GenerationSize214763248
TotalPromotedSize214743288
GenerationSize3359208
TotalPromotedSize3359112
GenerationSize41992920
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount16
GCHandleCount1763
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.4642360301807402
AllocRateMBSec
0
HeapSizePeakMB
38.396392
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
20.603088
GenSizeBeforeMB
[ 0.218392, 5.26224, 14.763248, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
12.387035292095769
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
48.264304
PromotedMB
29.879088
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
51
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
10131.0776
DurationMSec
22.870600000000195
PauseDurationMSec
2.2377999999989697
SuspendDurationMSec
0.38369999999849824
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
20.37329999999929
PauseStartRelativeMSec
10130.7119
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
2.070799999999508
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize48264304
TotalPromoted29879088
Depth2
GenerationSize013757440
TotalPromotedSize01526736
GenerationSize19019648
TotalPromotedSize16559664
GenerationSize221458248
TotalPromotedSize221433576
GenerationSize3359208
TotalPromotedSize3359112
GenerationSize43669760
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount27
GCHandleCount2242
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.5003557080197405
AllocRateMBSec
0
HeapSizePeakMB
72.413624
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
29.281375999999998
GenSizeBeforeMB
[ 0, 7.46392, 21.458248, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
7.9072469552209155
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
55.033688
PromotedMB
24.586424
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
714
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
27303.0111
DurationMSec
15.399000000001251
PauseDurationMSec
2.3598999999994703
SuspendDurationMSec
0.21159999999872525
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
14.344499999999243
PauseStartRelativeMSec
27302.7066
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
2.285200000002078
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize55033688
TotalPromoted24586424
Depth2
GenerationSize011357344
TotalPromotedSize01165600
GenerationSize17863264
TotalPromotedSize1448
GenerationSize231091952
TotalPromotedSize223061264
GenerationSize3359208
TotalPromotedSize3359112
GenerationSize44361920
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount105
GCHandleCount2243
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.4681568860149805
AllocRateMBSec
0
HeapSizePeakMB
80.79808799999999
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
38.127496
GenSizeBeforeMB
[ 0, 6.67616, 31.092128, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
11.88955749877486
GCThreadIDsToHeapNumbers(empty)
DurationMSec
41253.2051
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="175734"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesPlatformEF_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 1:32:49 PM"\\r\\n SessionEndTime="8/21/2023 1:33:34 PM"\\r\\n SessionDuration="00...
Events
[ <Event MSec= "0.0000" PID="10556" PName="PerfView" TID="3484" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 1:33:31 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="467" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 1:32:49 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="10556" PName="PerfView" TID="3484" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "12.1892" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="10556" PName="PerfView" TID="3484" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "12.1584" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "12.1892" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "12.2092" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "12.2092" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", + "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337154998955.5
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="10556" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="156.1483" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmpE4B2.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", + "
Count108
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="3484" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337154998955.5" /> ... (more) ]
Count1439
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", + "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="101" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1247" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="162" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="28" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", + " ... (more) ]
Count78
(values)
indexvalue
0\r\n", + "
1\r\n", + "
2\r\n", + "
3\r\n", + "
4\r\n", + "
5\r\n", + "
6\r\n", + "
7\r\n", + "
8\r\n", + "
9\r\n", + "
10\r\n", + "
11\r\n", + "
12\r\n", + "
13\r\n", + "
14\r\n", + "
15\r\n", + "
16\r\n", + "
17\r\n", + "
18\r\n", + "
19\r\n", + "
... (more)
MaxEventIndex175734
EventCount
175734
Size
32613074
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesPlatformEF_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", + "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", + "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", + "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", + "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", + " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", + " at lambda_method760(Closure, TraceLog)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 13:32:49Z
SessionEndTime2023-08-21 13:33:34Z
SessionEndTimeRelativeMSec
45260.6477
SessionDuration00:00:45.2606477
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [99, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [101, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [102, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesPlatformEF_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
PlatformBenchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\eajiv1lf.mwy\\src\\BenchmarksApps\\TechEmpower\\PlatformBenchmarks\\published\\PlatformBenchmarks.exe"  
NumberOfHeapCountSwitches
11
Benchmark
FortunesPlatformEF
Id
datas_3 | FortunesPlatformEF
TotalSuspensionTimeMSec
220.88059999995596
PercentPauseTimeInGC
4.926695052564141
PercentTimeInGC
4.349918285566506
MeanHeapSizeBeforeMB
71.94718968948258
MaxHeapSizeMB
97.563216
TotalAllocationsMB
49138.79155199996
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesPlatformEF_Windows.gc.etl.zip
ProcessName
PlatformBenchmarks
datas_3 | FortunesPlatform
Submission#4+LoadInfo
WorkingSetMB
147
PrivateMemoryMB
119
Latency50thMS
1.05
Latency75thMS
1.34
Latency90thMS
2.23
Latency99thMS
10.25
MeanLatencyMS
1.46
ProcessId
8292
RequestsPerMSec
423.007
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
PlatformBenchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\cpfgawzs.fwo\\src\\BenchmarksApps\\TechEmpower\\PlatformBenchmarks\\published\\PlatformBenchmarks.exe"  
ProcessID
8292
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.293976
PromotedMB
1.031976
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
705.4792
DurationMSec
4.048800000000028
PauseDurationMSec
4.2637999999999465
SuspendDurationMSec
0.005299999999920146
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
705.3078
PauseStartRelativeMSec
705.3078
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1293976
TotalPromoted1031976
Depth0
GenerationSize0584
TotalPromotedSize01031976
GenerationSize11042096
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize45384
FinalizationPromotedCount27
PinnedObjectCount1
SinkBlockCount1
GCHandleCount297
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
2.11916758888882
AllocRateMBSec
0
HeapSizePeakMB
2.742152
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.742152
GenSizeBeforeMB
[ 2.621536, 0, 0, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
0.6008977811400493
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
1.781792
PromotedMB
1.456384
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
987.5585
DurationMSec
3.4986999999999853
PauseDurationMSec
3.558999999999969
SuspendDurationMSec
0.028299999999944703
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
277.9814
PauseStartRelativeMSec
987.5104
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1781792
TotalPromoted1456384
Depth1
GenerationSize084504
TotalPromotedSize0478616
GenerationSize1468224
TotalPromotedSize1977768
GenerationSize2977768
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize760
FinalizationPromotedCount27
PinnedObjectCount3
SinkBlockCount1
GCHandleCount311
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.563968
RatioPeakAfter
2.123911208491227
AllocRateMBSec
9.223523588268854
HeapSizePeakMB
3.784368
UserAllocated
[ 2.563968, 0, 0, 0, 0 ]
HeapSizeBeforeMB
3.784368
GenSizeBeforeMB
[ 2.621656, 1.042096, 0, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
1.2641169793038474
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
2.309096
PromotedMB
0.603
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
1241.7662
DurationMSec
1.7690000000000055
PauseDurationMSec
1.7934000000000196
SuspendDurationMSec
0.0059000000001105946
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
250.69010000000003
PauseStartRelativeMSec
1241.7482
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize2309096
TotalPromoted603000
Depth0
GenerationSize0584
TotalPromotedSize0603000
GenerationSize11079448
TotalPromotedSize10
GenerationSize2977768
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount1
GCHandleCount286
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.577328
RatioPeakAfter
1.8210208670406083
AllocRateMBSec
10.28093251388866
HeapSizePeakMB
4.204912
UserAllocated
[ 2.577328, 0, 0, 0, 0 ]
HeapSizeBeforeMB
4.204912
GenSizeBeforeMB
[ 2.638304, 0.468224, 0.977768, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
0.710303841637184
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
2.721496
PromotedMB
0.403336
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
1527.2874
DurationMSec
1.6685999999999694
PauseDurationMSec
1.6965999999999894
SuspendDurationMSec
0.006900000000086948
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
283.7322999999999
PauseStartRelativeMSec
1527.2685
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize2721496
TotalPromoted403336
Depth0
GenerationSize0584
TotalPromotedSize0403336
GenerationSize11491848
TotalPromotedSize10
GenerationSize2977768
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount1
GCHandleCount287
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount6
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.596856
RatioPeakAfter
1.763585910102385
AllocRateMBSec
9.152486340117077
HeapSizePeakMB
4.7995920000000005
UserAllocated
[ 2.596856, 0, 0, 0, 0 ]
HeapSizeBeforeMB
4.7995920000000005
GenSizeBeforeMB
[ 2.62176, 1.079448, 0.977768, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
0.5944037201558743
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
3.636888
PromotedMB
0.764872
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
5
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
1796.5036
DurationMSec
2.2398000000000593
PauseDurationMSec
2.268299999999954
SuspendDurationMSec
0.006300000000010186
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
267.52660000000014
PauseStartRelativeMSec
1796.4834
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3636888
TotalPromoted764872
Depth0
GenerationSize0584
TotalPromotedSize0764872
GenerationSize12267032
TotalPromotedSize10
GenerationSize2977768
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount1
GCHandleCount287
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount5
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.73072
RatioPeakAfter
1.4716009951365017
AllocRateMBSec
10.20728406072517
HeapSizePeakMB
5.352048000000001
UserAllocated
[ 2.590544, 0, 0, 0.140176, 0 ]
HeapSizeBeforeMB
5.352048000000001
GenSizeBeforeMB
[ 2.621608, 1.491848, 0.977768, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
0.840749769547146
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.985088
PromotedMB
0.889704
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7023.3661
DurationMSec
3.1805999999996857
PauseDurationMSec
3.2213000000001557
SuspendDurationMSec
0.008700000000317232
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
5224.5964
PauseStartRelativeMSec
7023.3408
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6985088
TotalPromoted889704
Depth0
GenerationSize02364784
TotalPromotedSize0889704
GenerationSize13160392
TotalPromotedSize10
GenerationSize2977768
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize4221320
TotalPromotedSize40
FinalizationPromotedSize16264
FinalizationPromotedCount8
PinnedObjectCount2
SinkBlockCount3
GCHandleCount498
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount8
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.49388
RatioPeakAfter
0.8785114804566528
AllocRateMBSec
0.47733447888912517
HeapSizePeakMB
6.136480000000001
UserAllocated
[ 2.49388, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.136480000000001
GenSizeBeforeMB
[ 2.630856, 2.267032, 0.977768, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
0.061618445493999446
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2N
HeapSizeAfterMB
7.555048
PromotedMB
5.027096
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7033.4421
DurationMSec
9.000100000000202
PauseDurationMSec
9.109799999999268
SuspendDurationMSec
0.0819999999994252
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
6.799600000000282
PauseStartRelativeMSec
7033.3473
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize7555048
TotalPromoted5027096
Depth2
GenerationSize01868448
TotalPromotedSize01361128
GenerationSize11361952
TotalPromotedSize12432136
GenerationSize23409904
TotalPromotedSize2973072
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize4653920
TotalPromotedSize40
FinalizationPromotedSize376
FinalizationPromotedCount11
PinnedObjectCount3
SinkBlockCount3
GCHandleCount700
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration2
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.390176
RatioPeakAfter
0.9313370345231426
AllocRateMBSec
351.5171480675188
HeapSizePeakMB
7.036296
UserAllocated
[ 2.390176, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.036296
GenSizeBeforeMB
[ 2.637312, 3.160392, 0.977768, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
57.26048751052539
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
8.096912
PromotedMB
1.240424
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7060.2999
DurationMSec
3.68119999999999
PauseDurationMSec
3.730999999999767
SuspendDurationMSec
0.02959999999984575
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
17.81580000000031
PauseStartRelativeMSec
7060.259
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8096912
TotalPromoted1240424
Depth0
GenerationSize01014656
TotalPromotedSize01240424
GenerationSize12605168
TotalPromotedSize10
GenerationSize23409904
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize4806360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount3
GCHandleCount822
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount544
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.344136
RatioPeakAfter
0.9458667699488399
AllocRateMBSec
131.57624131388766
HeapSizePeakMB
7.658600000000001
UserAllocated
[ 2.344136, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.658600000000001
GenSizeBeforeMB
[ 2.62592, 1.361952, 3.409904, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
17.315796313140485
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
9.12976
PromotedMB
1.530904
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7069.691
DurationMSec
3.9390000000003056
PauseDurationMSec
3.973300000000563
SuspendDurationMSec
0.0078000000003157766
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
5.690599999999904
PauseStartRelativeMSec
7069.6726
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9129760
TotalPromoted1530904
Depth0
GenerationSize0230120
TotalPromotedSize01530904
GenerationSize14142392
TotalPromotedSize10
GenerationSize23409904
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize41086520
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount3
GCHandleCount960
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount175
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.319408
RatioPeakAfter
0.9768580992271428
AllocRateMBSec
407.5858433205707
HeapSizePeakMB
8.918479999999999
UserAllocated
[ 2.319408, 0, 0, 0, 0 ]
HeapSizeBeforeMB
8.918479999999999
GenSizeBeforeMB
[ 2.642584, 2.605168, 3.409904, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
41.114870807855745
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
14.378264
PromotedMB
6.964408
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7106.9397
DurationMSec
6.513500000000022
PauseDurationMSec
6.789499999999862
SuspendDurationMSec
0.16849999999976717
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
33.06700000000001
PauseStartRelativeMSec
7106.7038
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize14378264
TotalPromoted6964408
Depth1
GenerationSize00
TotalPromotedSize03947056
GenerationSize15504088
TotalPromotedSize13017352
GenerationSize26422672
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize42190680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount4
GCHandleCount1460
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration1
Gen0ReductionCount407
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated4584
FreeListConsumed4696
AllocedSinceLastGCMB
10.02088
RatioPeakAfter
1.2681241629726652
AllocRateMBSec
303.04775153476265
HeapSizePeakMB
18.233424000000003
UserAllocated
[ 10.020816, 0, 0, 6.40000000000085E-05, 0 ]
HeapSizeBeforeMB
18.233424000000003
GenSizeBeforeMB
[ 10.420304000000002, 4.142392, 3.409904, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
17.034862569467677
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
18.544232
PromotedMB
1.889912
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7161.6959
DurationMSec
3.9416000000001077
PauseDurationMSec
4.256499999999505
SuspendDurationMSec
0.23689999999987776
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
47.95310000000063
PauseStartRelativeMSec
7161.4075
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize18544232
TotalPromoted1889912
Depth0
GenerationSize02437080
TotalPromotedSize01889912
GenerationSize16948696
TotalPromotedSize10
GenerationSize26422672
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize42474960
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount8
GCHandleCount1545
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount162
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.218015999999999
RatioPeakAfter
1.2210533172794644
AllocRateMBSec
213.0835337027192
HeapSizePeakMB
22.643496
UserAllocated
[ 10.218015999999999, 0, 0, 0, 0 ]
HeapSizeBeforeMB
22.643496
GenSizeBeforeMB
[ 10.455912, 5.504087999999999, 6.422672, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
8.152715209462425
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
17.324288
PromotedMB
1.2968
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7189.2278
DurationMSec
3.2812000000003536
PauseDurationMSec
3.6179000000001906
SuspendDurationMSec
0.2551000000003114
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
23.280299999999443
PauseStartRelativeMSec
7188.9189
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize17324288
TotalPromoted1296800
Depth0
GenerationSize00
TotalPromotedSize01296800
GenerationSize17947472
TotalPromotedSize10
GenerationSize26422672
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize42693320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount10
GCHandleCount1544
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount75
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.232264
RatioPeakAfter
1.3851268231052267
AllocRateMBSec
439.5245765733365
HeapSizePeakMB
23.996336
UserAllocated
[ 10.232264, 0, 0, 0, 0 ]
HeapSizeBeforeMB
23.996336
GenSizeBeforeMB
[ 10.364144, 6.948696, 6.422672, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
13.450342402094712
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
18.3094
PromotedMB
1.28428
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7211.2179
DurationMSec
3.3596000000006825
PauseDurationMSec
3.686200000000099
SuspendDurationMSec
0.24330000000009022
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
18.407899999999245
PauseStartRelativeMSec
7210.918
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize18309400
TotalPromoted1284280
Depth0
GenerationSize00
TotalPromotedSize01284280
GenerationSize18850184
TotalPromotedSize10
GenerationSize26422672
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize42775720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount15
GCHandleCount1544
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount121
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.31904
RatioPeakAfter
1.370160464023944
AllocRateMBSec
560.576708913044
HeapSizePeakMB
25.086816
UserAllocated
[ 10.31904, 0, 0, 0, 0 ]
HeapSizeBeforeMB
25.086816
GenSizeBeforeMB
[ 10.455848000000001, 7.947471999999999, 6.422672, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
16.684092133194873
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
19.274792
PromotedMB
1.272856
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7232.2623
DurationMSec
3.1078999999999724
PauseDurationMSec
3.432699999999386
SuspendDurationMSec
0.23289999999997235
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
17.382000000000517
PauseStartRelativeMSec
7231.961
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize19274792
TotalPromoted1272856
Depth0
GenerationSize00
TotalPromotedSize01272856
GenerationSize19811456
TotalPromotedSize10
GenerationSize26422672
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize42779840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount19
GCHandleCount1545
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount151
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.901536
RatioPeakAfter
1.3255485195378498
AllocRateMBSec
569.6430790472733
HeapSizePeakMB
25.549671999999994
UserAllocated
[ 9.901536, 0, 0, 0, 0 ]
HeapSizeBeforeMB
25.549671999999994
GenSizeBeforeMB
[ 10.015991999999999, 8.850183999999999, 6.422672, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
16.49171018558712
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
23.000584
PromotedMB
10.943336
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
15
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7253.7069
DurationMSec
11.960199999999531
PauseDurationMSec
2.0112000000008265
SuspendDurationMSec
0.4949000000005981
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
8.253899999999703
PauseStartRelativeMSec
7253.4095
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.7645000000002256
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize23000584
TotalPromoted10943336
Depth2
GenerationSize02401408
TotalPromotedSize01264360
GenerationSize111098760
TotalPromotedSize13017352
GenerationSize26422672
TotalPromotedSize26400864
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize42816920
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount16
GCHandleCount1556
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.1665870744847173
AllocRateMBSec
0
HeapSizePeakMB
26.832183999999998
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
16.494951999999998
GenSizeBeforeMB
[ 0, 9.811456, 6.422672, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
18.48439939400333
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
20.586816
PromotedMB
1.26436
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7254.3159
DurationMSec
3.098899999999958
PauseDurationMSec
3.5890000000008513
SuspendDurationMSec
0
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
18.944499999999607
PauseStartRelativeMSec
7254.3159
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize20586816
TotalPromoted1264360
Depth0
GenerationSize00
TotalPromotedSize01264360
GenerationSize111098760
TotalPromotedSize10
GenerationSize26422672
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize42804560
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount21
GCHandleCount1553
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount148
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure0
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.456488
RatioPeakAfter
1.3033673589932508
AllocRateMBSec
551.9537596664054
HeapSizePeakMB
26.832183999999998
UserAllocated
[ 10.195664, 0, 0, 0.260824, 0 ]
HeapSizeBeforeMB
26.832183999999998
GenSizeBeforeMB
[ 10.337232, 9.811456, 6.422672, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
15.927396986712132
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
14.215336
PromotedMB
4.690288
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7278.3449
DurationMSec
4.845099999999547
PauseDurationMSec
5.242599999999584
SuspendDurationMSec
0.3120999999991909
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
12.302400000000489
PauseStartRelativeMSec
7277.9723
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize14215336
TotalPromoted4690288
Depth1
GenerationSize00
TotalPromotedSize0682416
GenerationSize1695192
TotalPromotedSize14007872
GenerationSize210430040
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize42829280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount16
GCHandleCount1552
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration1
Gen0ReductionCount137
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated400
FreeListConsumed400
AllocedSinceLastGCMB
9.114400000000002
RatioPeakAfter
1.9209586041441438
AllocRateMBSec
740.863571335645
HeapSizePeakMB
27.307071999999998
UserAllocated
[ 9.114464000000002, 0, 0, -6.4E-05, 0 ]
HeapSizeBeforeMB
27.307071999999998
GenSizeBeforeMB
[ 9.524816, 11.09876, 6.422672, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
29.88087774294421
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
15.51832
PromotedMB
1.259288
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7301.4147
DurationMSec
2.65729999999985
PauseDurationMSec
2.940400000000409
SuspendDurationMSec
0.23220000000037544
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
17.966199999999844
PauseStartRelativeMSec
7301.1576
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize15518320
TotalPromoted1259288
Depth0
GenerationSize00
TotalPromotedSize01259288
GenerationSize11977576
TotalPromotedSize10
GenerationSize210430040
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize42849880
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount19
GCHandleCount1553
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount4001191
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.257
RatioPeakAfter
1.4029730022322005
AllocRateMBSec
570.9053667442247
HeapSizePeakMB
21.771784
UserAllocated
[ 10.257, 0, 0, 0, 0 ]
HeapSizeBeforeMB
21.771784
GenSizeBeforeMB
[ 10.385728, 0.695192, 10.43004, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
14.064458113707506
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
14.259376
PromotedMB
0.697856
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7350.0177
DurationMSec
1.7790999999997439
PauseDurationMSec
2.2372999999997774
SuspendDurationMSec
0.27440000000024156
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
45.52720000000045
PauseStartRelativeMSec
7349.6003
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize14259376
TotalPromoted697856
Depth1
GenerationSize00
TotalPromotedSize0694368
GenerationSize1707128
TotalPromotedSize13488
GenerationSize210433304
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize42858120
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount27
GCHandleCount1552
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps11
CondemnedGeneration1
Gen0ReductionCount126
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated120
FreeListConsumed168
AllocedSinceLastGCMB
25.958784
RatioPeakAfter
2.724662285362277
AllocRateMBSec
570.1818693001051
HeapSizePeakMB
38.851984
UserAllocated
[ 25.958720000000003, 0, 0, 6.4E-05, 0 ]
HeapSizeBeforeMB
38.851984
GenSizeBeforeMB
[ 26.183544, 1.977576, 10.43004, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
4.6840226528065125
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
15.538704
PromotedMB
1.240472
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7401.5924
DurationMSec
1.5450999999993655
PauseDurationMSec
1.970299999999952
SuspendDurationMSec
0.2800999999999476
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
49.39710000000014
PauseStartRelativeMSec
7401.195
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize15538704
TotalPromoted1240472
Depth0
GenerationSize00
TotalPromotedSize01240472
GenerationSize11969976
TotalPromotedSize10
GenerationSize210433304
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize42874600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount31
GCHandleCount1553
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps11
CondemnedGeneration0
Gen0ReductionCount36
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
28.11468
RatioPeakAfter
2.558415682543409
AllocRateMBSec
569.1564889436813
HeapSizePeakMB
39.754464
UserAllocated
[ 28.11468, 0, 0, 0, 0 ]
HeapSizeBeforeMB
39.754464
GenSizeBeforeMB
[ 28.353208000000002, 0.7071280000000001, 10.433304, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
3.8357012424221364
(1044 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.6513147556391363
MeanSizeAfterMB
22.981924541353372
MeanSizePeakMB
59.756726503759445
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1064
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
9.109799999999268
TotalPauseTimeMSec
1756.998900000041
MaxSuspendDurationMSec
7.609299999996438
MaxSizePeakMB
68.09929600000001
MaxAllocRateMBSec
1955.910241127818
TotalAllocatedMB
43449.609968
TotalCpuMSec
0
TotalPromotedMB
1161.383048
TotalSizeAfterMB
24452.76771199999
TotalSizePeakMB
63581.15700000005
FinalizedObjects(empty)
ProcessDuration
36620.9151
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.6371177681473836
MeanSizeAfterMB
24.04514530010833
MeanSizePeakMB
60.56470555146264
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
923
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
8.852099999996426
TotalPauseTimeMSec
1511.059700000035
MaxSuspendDurationMSec
7.609299999996438
MaxSizePeakMB
68.09929600000001
MaxAllocRateMBSec
1804.8494501073747
TotalAllocatedMB
37895.60736800001
TotalCpuMSec
0
TotalPromotedMB
1025.4868399999996
TotalSizeAfterMB
22193.66911199999
TotalSizePeakMB
55901.223224000016
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.6895355072463931
MeanSizeAfterMB
15.928405391304352
MeanSizePeakMB
54.96241066666666
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
138
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
8.436699999998382
TotalPauseTimeMSec
233.15590000000225
MaxSuspendDurationMSec
7.207200000000739
MaxSizePeakMB
59.022527999999994
MaxAllocRateMBSec
1955.910241127818
TotalAllocatedMB
5551.612423999999
TotalCpuMSec
0
TotalPromotedMB
105.17954399999999
TotalSizeAfterMB
2198.1199440000005
TotalSizePeakMB
7584.812672
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
4.261100000001231
MeanSizeAfterMB
20.326218666666666
MeanSizePeakMB
31.70703466666666
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
3
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
9.109799999999268
TotalPauseTimeMSec
12.783300000003692
MaxSuspendDurationMSec
0.4949000000005981
MaxSizePeakMB
61.25262399999999
MaxAllocRateMBSec
351.5171480675188
TotalAllocatedMB
2.390176
TotalCpuMSec
0
TotalPromotedMB
30.716664
TotalSizeAfterMB
60.978656
TotalSizePeakMB
95.12110399999999
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2N
HeapSizeAfterMB
7.555048
PromotedMB
5.027096
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7033.4421
DurationMSec
9.000100000000202
PauseDurationMSec
9.109799999999268
SuspendDurationMSec
0.0819999999994252
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
6.799600000000282
PauseStartRelativeMSec
7033.3473
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize7555048
TotalPromoted5027096
Depth2
GenerationSize01868448
TotalPromotedSize01361128
GenerationSize11361952
TotalPromotedSize12432136
GenerationSize23409904
TotalPromotedSize2973072
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize4653920
TotalPromotedSize40
FinalizationPromotedSize376
FinalizationPromotedCount11
PinnedObjectCount3
SinkBlockCount3
GCHandleCount700
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration2
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.390176
RatioPeakAfter
0.9313370345231426
AllocRateMBSec
351.5171480675188
HeapSizePeakMB
7.036296
UserAllocated
[ 2.390176, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.036296
GenSizeBeforeMB
[ 2.637312, 3.160392, 0.977768, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
57.26048751052539
BGCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
23.000584
PromotedMB
10.943336
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
15
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7253.7069
DurationMSec
11.960199999999531
PauseDurationMSec
2.0112000000008265
SuspendDurationMSec
0.4949000000005981
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
8.253899999999703
PauseStartRelativeMSec
7253.4095
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.7645000000002256
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize23000584
TotalPromoted10943336
Depth2
GenerationSize02401408
TotalPromotedSize01264360
GenerationSize111098760
TotalPromotedSize13017352
GenerationSize26422672
TotalPromotedSize26400864
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize42816920
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount16
GCHandleCount1556
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.1665870744847173
AllocRateMBSec
0
HeapSizePeakMB
26.832183999999998
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
16.494951999999998
GenSizeBeforeMB
[ 0, 9.811456, 6.422672, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
18.48439939400333
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
30.423024
PromotedMB
14.746232
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
536
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
22357.9781
DurationMSec
11.830799999999726
PauseDurationMSec
1.6623000000035972
SuspendDurationMSec
0.4830000000038126
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
9.498200000001816
PauseStartRelativeMSec
22357.5713
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.4574000000029628
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize30423024
TotalPromoted14746232
Depth2
GenerationSize06411560
TotalPromotedSize01104376
GenerationSize13227872
TotalPromotedSize15294440
GenerationSize216090192
TotalPromotedSize28086656
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize44432576
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount43
GCHandleCount1672
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
2.0133640889873403
AllocRateMBSec
0
HeapSizePeakMB
61.25262399999999
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
20.777936
GenSizeBeforeMB
[ 1.199024, 3.227872, 16.090216, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
9.210578270918491
GCThreadIDsToHeapNumbers(empty)
DurationMSec
39839.124
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="154381"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesPlatform_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 1:42:16 PM"\\r\\n SessionEndTime="8/21/2023 1:43:00 PM"\\r\\n SessionDuration="00:0...
Events
[ <Event MSec= "0.0000" PID= "796" PName="PerfView" TID="7116" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 1:42:57 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="411" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 1:42:16 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID= "796" PName="PerfView" TID="7116" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "10.2014" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID= "796" PName="PerfView" TID="7116" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "10.1706" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "10.2014" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "10.2206" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "10.2206" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", + "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337154431602.6
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="796" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="156.1215" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmp8D03.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", + "
Count108
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="7116" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337154431602.6" /> ... (more) ]
Count1441
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", + "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="101" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1254" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="157" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="28" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", + " ... (more) ]
Count78
(values)
indexvalue
0\r\n", + "
1\r\n", + "
2\r\n", + "
3\r\n", + "
4\r\n", + "
5\r\n", + "
6\r\n", + "
7\r\n", + "
8\r\n", + "
9\r\n", + "
10\r\n", + "
11\r\n", + "
12\r\n", + "
13\r\n", + "
14\r\n", + "
15\r\n", + "
16\r\n", + "
17\r\n", + "
18\r\n", + "
19\r\n", + "
... (more)
MaxEventIndex154381
EventCount
154381
Size
28786301
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesPlatform_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", + "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", + "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", + "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", + "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", + " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", + " at lambda_method760(Closure, TraceLog)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 13:42:16Z
SessionEndTime2023-08-21 13:43:00Z
SessionEndTimeRelativeMSec
43812.9783
SessionDuration00:00:43.8129783
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [99, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [101, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [102, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesPlatform_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
PlatformBenchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\cpfgawzs.fwo\\src\\BenchmarksApps\\TechEmpower\\PlatformBenchmarks\\published\\PlatformBenchmarks.exe"  
NumberOfHeapCountSwitches
7
Benchmark
FortunesPlatform
Id
datas_3 | FortunesPlatform
TotalSuspensionTimeMSec
250.89509999998688
PercentPauseTimeInGC
4.797801734889036
PercentTimeInGC
4.112687506271666
MeanHeapSizeBeforeMB
59.756726503759445
MaxHeapSizeMB
68.09929600000001
TotalAllocationsMB
43449.609968
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesPlatform_Windows.gc.etl.zip
ProcessName
PlatformBenchmarks
datas_3 | Fortunes
Submission#4+LoadInfo
WorkingSetMB
162
PrivateMemoryMB
138
Latency50thMS
0.73
Latency75thMS
0.99
Latency90thMS
1.63
Latency99thMS
11.83
MeanLatencyMS
1.22
ProcessId
10696
RequestsPerMSec
306.505
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
Benchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\xmtfecyd.cd2\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios DbFortunesRaw --urls http://10.0.0.104:5000 --server Kestrel --kestrelTransport Sockets --protocol 
ProcessID
10696
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
3.690744
PromotedMB
1.315248
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5897.8015
DurationMSec
5.692400000000816
PauseDurationMSec
5.92450000000008
SuspendDurationMSec
0.008799999999610009
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
5897.6233
PauseStartRelativeMSec
5897.6233
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3690744
TotalPromoted1315248
Depth0
GenerationSize02061824
TotalPromotedSize01315248
GenerationSize11324040
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4196600
TotalPromotedSize40
FinalizationPromotedSize41222
FinalizationPromotedCount26
PinnedObjectCount4
SinkBlockCount4
GCHandleCount549
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
0.7397294420853899
AllocRateMBSec
0
HeapSizePeakMB
2.7301520000000004
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.7301520000000004
GenSizeBeforeMB
[ 2.621872, 0, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
0.10035490861952671
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
4.791296
PromotedMB
2.860968
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
5916.8943
DurationMSec
7.170200000000477
PauseDurationMSec
7.213200000000143
SuspendDurationMSec
0.007799999999406282
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
13.367299999999886
PauseStartRelativeMSec
5916.8621
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4791296
TotalPromoted2860968
Depth1
GenerationSize01570424
TotalPromotedSize01649240
GenerationSize11658944
TotalPromotedSize11211728
GenerationSize21211728
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4241920
TotalPromotedSize40
FinalizationPromotedSize736
FinalizationPromotedCount26
PinnedObjectCount2
SinkBlockCount4
GCHandleCount868
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.450376
RatioPeakAfter
0.8479409328916435
AllocRateMBSec
183.31121468060272
HeapSizePeakMB
4.062736
UserAllocated
[ 2.450376, 0, 0, 0, 0 ]
HeapSizeBeforeMB
4.062736
GenSizeBeforeMB
[ 2.630416, 1.32404, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
35.04871115862167
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.615992
PromotedMB
1.346552
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5934.3344
DurationMSec
6.700300000000425
PauseDurationMSec
6.782799999999952
SuspendDurationMSec
0.054300000000694126
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
10.200599999999213
PauseStartRelativeMSec
5934.266
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4615992
TotalPromoted1346552
Depth0
GenerationSize0584
TotalPromotedSize01346552
GenerationSize13024640
TotalPromotedSize10
GenerationSize21211728
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4270760
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount982
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount350
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.298056
RatioPeakAfter
1.2155861621943884
AllocRateMBSec
225.2863557045838
HeapSizePeakMB
5.611136
UserAllocated
[ 2.298056, 0, 0, 0, 0 ]
HeapSizeBeforeMB
5.611136
GenSizeBeforeMB
[ 2.632184, 1.658944, 1.211728, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
39.93782163760075
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
7.892096
PromotedMB
2.962248
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6011.2522
DurationMSec
7.013799999999719
PauseDurationMSec
7.20220000000063
SuspendDurationMSec
0.05230000000028667
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
70.0663999999997
PauseStartRelativeMSec
6011.1019
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize7892096
TotalPromoted2962248
Depth1
GenerationSize02358104
TotalPromotedSize01050648
GenerationSize11961720
TotalPromotedSize11911600
GenerationSize23123192
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4340800
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount4
GCHandleCount1130
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration1
Gen0ReductionCount396
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
14.089935999999996
RatioPeakAfter
2.4792582350746883
AllocRateMBSec
201.09404793167704
HeapSizePeakMB
19.566544000000007
UserAllocated
[ 14.089903999999997, 0, 0, 3.200000000000425E-05, 0 ]
HeapSizeBeforeMB
19.566544000000007
GenSizeBeforeMB
[ 15.221896000000005, 3.02464, 1.211728, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
9.320991968277669
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
10.447664
PromotedMB
6.340992
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
5
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
6067.537
DurationMSec
6.957599999999729
PauseDurationMSec
0.6243999999996959
SuspendDurationMSec
0.1993000000002212
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
3.467399999999543
PauseStartRelativeMSec
6067.2698
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0.4317000000000917
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10447664
TotalPromoted6340992
Depth2
GenerationSize03851800
TotalPromotedSize01199048
GenerationSize12990632
TotalPromotedSize11911600
GenerationSize23123192
TotalPromotedSize23122096
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize4373760
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount4
GCHandleCount1164
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.9592483066071038
AllocRateMBSec
0
HeapSizePeakMB
20.469568
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.551296
GenSizeBeforeMB
[ 2.358104, 1.96172, 3.123192, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
6.559295447511716
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
9.678712
PromotedMB
1.199048
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6068.4694
DurationMSec
2.5583999999998923
PauseDurationMSec
3.063799999999901
SuspendDurationMSec
0
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
50.20229999999992
PauseStartRelativeMSec
6068.4694
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9678712
TotalPromoted1199048
Depth0
GenerationSize03086968
TotalPromotedSize01199048
GenerationSize12990632
TotalPromotedSize10
GenerationSize23123192
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4369640
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount4
GCHandleCount1163
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration0
Gen0ReductionCount90
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure0
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
14.055040000000002
RatioPeakAfter
2.114906198262744
AllocRateMBSec
279.9680492726433
HeapSizePeakMB
20.469568
UserAllocated
[ 13.946760000000001, 0, 0, 0.10828, 0 ]
HeapSizeBeforeMB
20.469568
GenSizeBeforeMB
[ 15.276375999999999, 1.96172, 3.123192, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.7518759586301815
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
5.962728
PromotedMB
1.135272
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6089.5202
DurationMSec
2.3770999999997002
PauseDurationMSec
2.9439000000002125
SuspendDurationMSec
0.13069999999970605
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
14.48070000000007
PauseStartRelativeMSec
6088.977
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5962728
TotalPromoted1135272
Depth1
GenerationSize0584
TotalPromotedSize0427184
GenerationSize11397640
TotalPromotedSize1708088
GenerationSize23831144
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4625080
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount5
GCHandleCount1162
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration1
Gen0ReductionCount47
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.484792000000002
RatioPeakAfter
3.495350450330788
AllocRateMBSec
862.167712886804
HeapSizePeakMB
20.841824
UserAllocated
[ 12.484824000000001, 0, 0, -3.2E-05, 0 ]
HeapSizeBeforeMB
20.841824
GenSizeBeforeMB
[ 14.61972, 2.990632, 3.123192, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
16.895079370546036
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
6.145584
PromotedMB
0.523184
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6109.5234
DurationMSec
2.1544999999996435
PauseDurationMSec
2.4259000000001834
SuspendDurationMSec
0.1021999999993568
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
17.39140000000043
PauseStartRelativeMSec
6109.2897
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6145584
TotalPromoted523184
Depth1
GenerationSize0584
TotalPromotedSize0497224
GenerationSize11493304
TotalPromotedSize125960
GenerationSize23848296
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4695120
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount5
GCHandleCount1162
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps9
CondemnedGeneration1
Gen0ReductionCount108
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated360
FreeListConsumed360
AllocedSinceLastGCMB
19.2526
RatioPeakAfter
4.360548973051217
AllocRateMBSec
1107.01841139871
HeapSizePeakMB
26.798119999999994
UserAllocated
[ 19.252568, 0, 0, 3.2E-05, 0 ]
HeapSizeBeforeMB
26.798119999999994
GenSizeBeforeMB
[ 21.461055999999996, 1.39764, 3.8311439999999997, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
12.241324499301662
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
8.72812
PromotedMB
0.443544
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6129.7772
DurationMSec
1.4473999999991065
PauseDurationMSec
1.6988000000001193
SuspendDurationMSec
0.11710000000039145
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
17.870699999999488
PauseStartRelativeMSec
6129.5502
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8728120
TotalPromoted443544
Depth1
GenerationSize02589880
TotalPromotedSize0432496
GenerationSize11463424
TotalPromotedSize111048
GenerationSize23850816
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4715720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount5
GCHandleCount1162
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps9
CondemnedGeneration1
Gen0ReductionCount4115
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated80
FreeListConsumed80
AllocedSinceLastGCMB
20.238432000000003
RatioPeakAfter
3.2517096465218174
AllocRateMBSec
1132.4924037670928
HeapSizePeakMB
28.381312000000005
UserAllocated
[ 20.238432000000003, 0, 0, 0, 0 ]
HeapSizeBeforeMB
28.381312000000005
GenSizeBeforeMB
[ 22.931432000000004, 1.493304, 3.848296, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
8.680855412760435
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
13.956728
PromotedMB
0.513688
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6149.4498
DurationMSec
1.5018999999992957
PauseDurationMSec
1.7343000000000757
SuspendDurationMSec
0.10130000000026484
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
18.013199999999415
PauseStartRelativeMSec
6149.2391
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13956728
TotalPromoted513688
Depth1
GenerationSize07746672
TotalPromotedSize0505040
GenerationSize11522648
TotalPromotedSize18648
GenerationSize23859288
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4719840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount5
GCHandleCount1163
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps9
CondemnedGeneration1
Gen0ReductionCount73
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated40
FreeListConsumed40
AllocedSinceLastGCMB
20.754272
RatioPeakAfter
2.062697216711539
AllocRateMBSec
1152.1701863078563
HeapSizePeakMB
28.788504000000003
UserAllocated
[ 20.754272, 0, 0, 0, 0 ]
HeapSizeBeforeMB
28.788504000000003
GenSizeBeforeMB
[ 23.365984, 1.4634239999999998, 3.8508160000000005, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
8.782377516141894
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
6.208664
PromotedMB
0.452
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6168.9187
DurationMSec
1.4039999999995416
PauseDurationMSec
1.6909999999998035
SuspendDurationMSec
0.14259999999922002
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
17.700700000000325
PauseStartRelativeMSec
6168.6535
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6208664
TotalPromoted452000
Depth1
GenerationSize0584
TotalPromotedSize0451824
GenerationSize11483592
TotalPromotedSize1176
GenerationSize23859288
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4756920
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount5
GCHandleCount1162
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps9
CondemnedGeneration1
Gen0ReductionCount75
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated40
FreeListConsumed40
AllocedSinceLastGCMB
20.37192
RatioPeakAfter
4.599261934612664
AllocRateMBSec
1150.9104159722285
HeapSizePeakMB
28.555272000000002
UserAllocated
[ 20.37192, 0, 0, 0, 0 ]
HeapSizeBeforeMB
28.555272000000002
GenSizeBeforeMB
[ 23.065056000000002, 1.5226479999999998, 3.8592880000000007, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
8.720225663556018
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
11.363088
PromotedMB
0.493184
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6188.3133
DurationMSec
1.5138000000006286
PauseDurationMSec
1.8549999999995634
SuspendDurationMSec
0.1999999999998181
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
17.671299999999974
PauseStartRelativeMSec
6187.9951
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11363088
TotalPromoted493184
Depth1
GenerationSize05128048
TotalPromotedSize0490768
GenerationSize11500112
TotalPromotedSize12416
GenerationSize23861488
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4765160
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount6
GCHandleCount1163
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps9
CondemnedGeneration1
Gen0ReductionCount71
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated80
FreeListConsumed168
AllocedSinceLastGCMB
20.364151999999997
RatioPeakAfter
2.5013306242106013
AllocRateMBSec
1152.3856196205163
HeapSizePeakMB
28.422839999999994
UserAllocated
[ 20.364151999999997, 0, 0, 0, 0 ]
HeapSizeBeforeMB
28.422839999999994
GenSizeBeforeMB
[ 22.971679999999996, 1.4835919999999998, 3.8592880000000007, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
9.500007681944902
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
6.253248
PromotedMB
0.509496
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6207.7126
DurationMSec
1.4457000000002154
PauseDurationMSec
1.6960000000008222
SuspendDurationMSec
0.10870000000068103
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
17.656999999999243
PauseStartRelativeMSec
6207.4854
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6253248
TotalPromoted509496
Depth1
GenerationSize0584
TotalPromotedSize0508320
GenerationSize11516776
TotalPromotedSize11176
GenerationSize23862448
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4765160
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount5
GCHandleCount1162
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps9
CondemnedGeneration1
Gen0ReductionCount76
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated80
FreeListConsumed80
AllocedSinceLastGCMB
20.150976000000004
RatioPeakAfter
4.52352953217272
AllocRateMBSec
1141.2457382341772
HeapSizePeakMB
28.286752
UserAllocated
[ 20.150976000000004, 0, 0, 0, 0 ]
HeapSizeBeforeMB
28.286752
GenSizeBeforeMB
[ 22.816872, 1.500112, 3.8614879999999996, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
8.763499199094799
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
10.841184
PromotedMB
0.505704
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6236.5749
DurationMSec
1.4329999999999927
PauseDurationMSec
1.796400000000176
SuspendDurationMSec
0.14719999999942956
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
27.09230000000025
PauseStartRelativeMSec
6236.2519
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10841184
TotalPromoted505704
Depth1
GenerationSize04543000
TotalPromotedSize0503648
GenerationSize11560376
TotalPromotedSize12056
GenerationSize23864368
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4765160
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount6
GCHandleCount1162
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount73
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
30.689560000000007
RatioPeakAfter
3.5456754538987627
AllocRateMBSec
1132.7779479778285
HeapSizePeakMB
38.43932
UserAllocated
[ 30.689560000000007, 0, 0, 0, 0 ]
HeapSizeBeforeMB
38.43932
GenSizeBeforeMB
[ 32.951816, 1.516776, 3.8624479999999997, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
6.218348350739734
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
13.94748
PromotedMB
0.502544
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6266.4527
DurationMSec
1.3468000000002576
PauseDurationMSec
1.6496999999999389
SuspendDurationMSec
0.0783000000001266
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
28.162600000000566
PauseStartRelativeMSec
6266.1719
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13947480
TotalPromoted502544
Depth1
GenerationSize07676320
TotalPromotedSize0501448
GenerationSize11532392
TotalPromotedSize11096
GenerationSize23865328
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4765160
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount6
GCHandleCount1163
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount48
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
33.004584
RatioPeakAfter
2.9198616524275356
AllocRateMBSec
1171.9295803654256
HeapSizePeakMB
40.724712000000004
UserAllocated
[ 33.004584, 0, 0, 0, 0 ]
HeapSizeBeforeMB
40.724712000000004
GenSizeBeforeMB
[ 35.191688000000006, 1.5603759999999998, 3.864368, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.533622028491297
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
16.487504
PromotedMB
0.51864
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6297.5541
DurationMSec
1.2790999999997439
PauseDurationMSec
1.6040000000002692
SuspendDurationMSec
0.09020000000055006
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
29.452000000000226
PauseStartRelativeMSec
6297.2526
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize16487504
TotalPromoted518640
Depth1
GenerationSize010197712
TotalPromotedSize0514664
GenerationSize11543064
TotalPromotedSize13976
GenerationSize23869168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4769280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount6
SinkBlockCount7
GCHandleCount1160
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount44
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
33.41884
RatioPeakAfter
2.492494194391097
AllocRateMBSec
1134.6883063968405
HeapSizePeakMB
41.09500799999999
UserAllocated
[ 33.41884, 0, 0, 0, 0 ]
HeapSizeBeforeMB
41.09500799999999
GenSizeBeforeMB
[ 35.58900799999999, 1.5323920000000004, 3.865328, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.1648634724376725
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
13.841664
PromotedMB
0.49588
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6327.7261
DurationMSec
1.3197000000000116
PauseDurationMSec
1.607600000000275
SuspendDurationMSec
0.08250000000043656
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
28.629399999999805
PauseStartRelativeMSec
6327.464
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13841664
TotalPromoted495880
Depth1
GenerationSize07550720
TotalPromotedSize0494744
GenerationSize11539096
TotalPromotedSize11136
GenerationSize23870168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4773400
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount8
GCHandleCount1162
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount40
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
33.314392
RatioPeakAfter
2.9595753805322826
AllocRateMBSec
1163.6426889840593
HeapSizePeakMB
40.965447999999995
UserAllocated
[ 33.314392, 0, 0, 0, 0 ]
HeapSizeBeforeMB
40.965447999999995
GenSizeBeforeMB
[ 35.44493599999999, 1.543064, 3.869168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.316665013064361
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
8.77516
PromotedMB
0.464872
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6357.5348
DurationMSec
1.3623999999999796
PauseDurationMSec
1.7020999999995183
SuspendDurationMSec
0.15139999999973952
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
28.170100000000275
PauseStartRelativeMSec
6357.2173
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8775160
TotalPromoted464872
Depth1
GenerationSize02491240
TotalPromotedSize0464696
GenerationSize11532072
TotalPromotedSize1176
GenerationSize23870168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4773400
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount8
GCHandleCount1161
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount43
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated40
FreeListConsumed40
AllocedSinceLastGCMB
32.80828
RatioPeakAfter
4.6105014609420225
AllocRateMBSec
1164.6490427793897
HeapSizePeakMB
40.457888
UserAllocated
[ 32.80828, 0, 0, 0, 0 ]
HeapSizeBeforeMB
40.457888
GenSizeBeforeMB
[ 34.940343999999996, 1.5390959999999998, 3.870168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.697939890599052
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
13.926424
PromotedMB
0.467584
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6387.8122
DurationMSec
1.4057999999995445
PauseDurationMSec
1.7444000000004962
SuspendDurationMSec
0.145900000000438
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
28.599099999999453
PauseStartRelativeMSec
6387.4977
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13926424
TotalPromoted467584
Depth1
GenerationSize07633320
TotalPromotedSize0467448
GenerationSize11541256
TotalPromotedSize1136
GenerationSize23870168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4773400
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount8
GCHandleCount1160
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount44
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
33.39914400000001
RatioPeakAfter
2.957813721598596
AllocRateMBSec
1167.8389879402025
HeapSizePeakMB
41.191768
UserAllocated
[ 33.39914400000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
41.191768
GenSizeBeforeMB
[ 35.681248000000004, 1.5320719999999997, 3.870168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.7488424209484705
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
16.572944
PromotedMB
0.421424
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6425.7845
DurationMSec
1.2080999999998312
PauseDurationMSec
1.4885999999996784
SuspendDurationMSec
0.08839999999963766
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
36.3095000000003
PauseStartRelativeMSec
6425.5288
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize16572944
TotalPromoted421424
Depth1
GenerationSize010324296
TotalPromotedSize0421288
GenerationSize11467960
TotalPromotedSize1136
GenerationSize23870168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4802240
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount6
SinkBlockCount8
GCHandleCount1159
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount45
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
33.376535999999994
RatioPeakAfter
2.4875874799311455
AllocRateMBSec
919.2232335889979
HeapSizePeakMB
41.226648
UserAllocated
[ 33.376535999999994, 0, 0, 0, 0 ]
HeapSizeBeforeMB
41.226648
GenSizeBeforeMB
[ 35.706944, 1.5412560000000002, 3.870168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.938293194630628
(1033 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.4254956315290084
MeanSizeAfterMB
11.082241694207012
MeanSizePeakMB
71.19659317758773
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1053
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
7.213200000000143
TotalPauseTimeMSec
1501.0469000000458
MaxSuspendDurationMSec
0.2776000000012573
MaxSizePeakMB
83.083696
MaxAllocRateMBSec
2932.1698229106787
TotalAllocatedMB
66184.09164800002
TotalCpuMSec
0
TotalPromotedMB
734.3277680000015
TotalSizeAfterMB
11669.600503999984
TotalSizePeakMB
74970.01261599988
FinalizedObjects(empty)
ProcessDuration
30282.400200000004
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.3953908108108752
MeanSizeAfterMB
11.606588810810813
MeanSizePeakMB
74.27183382702694
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
740
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
6.782799999999952
TotalPauseTimeMSec
1032.5892000000476
MaxSuspendDurationMSec
0.2776000000012573
MaxSizePeakMB
82.66908799999999
MaxAllocRateMBSec
2932.1698229106787
TotalAllocatedMB
48886.286984
TotalCpuMSec
0
TotalPromotedMB
585.1218560000007
TotalSizeAfterMB
8588.875720000002
TotalSizePeakMB
54961.15703199993
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.4994657051282
MeanSizeAfterMB
9.840631794871785
MeanSizePeakMB
64.06533979487179
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
312
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
7.213200000000143
TotalPauseTimeMSec
467.8332999999984
MaxSuspendDurationMSec
0.269800000000032
MaxSizePeakMB
83.083696
MaxAllocRateMBSec
2915.90365308839
TotalAllocatedMB
17297.80466400001
TotalCpuMSec
0
TotalPromotedMB
142.8649199999999
TotalSizeAfterMB
3070.2771199999966
TotalSizePeakMB
19988.386015999997
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
0.6243999999996959
MeanSizeAfterMB
10.447664
MeanSizePeakMB
20.469568
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
0.6243999999996959
TotalPauseTimeMSec
0.6243999999996959
MaxSuspendDurationMSec
0.1993000000002212
MaxSizePeakMB
20.469568
MaxAllocRateMBSec
0
TotalAllocatedMB
0
TotalCpuMSec
0
TotalPromotedMB
6.340992
TotalSizeAfterMB
10.447664
TotalSizePeakMB
20.469568
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking(empty)
BGCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
10.447664
PromotedMB
6.340992
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
5
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
6067.537
DurationMSec
6.957599999999729
PauseDurationMSec
0.6243999999996959
SuspendDurationMSec
0.1993000000002212
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
3.467399999999543
PauseStartRelativeMSec
6067.2698
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0.4317000000000917
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10447664
TotalPromoted6340992
Depth2
GenerationSize03851800
TotalPromotedSize01199048
GenerationSize12990632
TotalPromotedSize11911600
GenerationSize23123192
TotalPromotedSize23122096
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize4373760
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount4
GCHandleCount1164
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.9592483066071038
AllocRateMBSec
0
HeapSizePeakMB
20.469568
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.551296
GenSizeBeforeMB
[ 2.358104, 1.96172, 3.123192, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
6.559295447511716
GCThreadIDsToHeapNumbers(empty)
DurationMSec
37755.0548
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="230725"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\Fortunes_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 12:34:20 PM"\\r\\n SessionEndTime="8/21/2023 12:35:02 PM"\\r\\n SessionDuration="00:00:41.7...
Events
[ <Event MSec= "0.0000" PID="7416" PName="PerfView" TID="11140" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 12:34:59 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="600" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 12:34:20 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="7416" PName="PerfView" TID="11140" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "4.6909" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="7416" PName="PerfView" TID="11140" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "4.6693" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "4.6909" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "4.7108" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "4.7108" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", + "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337158507442.5
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="7416" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="156.4606" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmp5B42.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", + "
Count107
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="11140" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337158507442.5" /> ... (more) ]
Count1370
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", + "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="100" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1191" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="147" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="28" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", + " ... (more) ]
Count78
(values)
indexvalue
0\r\n", + "
1\r\n", + "
2\r\n", + "
3\r\n", + "
4\r\n", + "
5\r\n", + "
6\r\n", + "
7\r\n", + "
8\r\n", + "
9\r\n", + "
10\r\n", + "
11\r\n", + "
12\r\n", + "
13\r\n", + "
14\r\n", + "
15\r\n", + "
16\r\n", + "
17\r\n", + "
18\r\n", + "
19\r\n", + "
... (more)
MaxEventIndex230725
EventCount
230725
Size
42699286
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\Fortunes_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", + "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", + "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", + "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", + "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", + " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", + " at lambda_method760(Closure, TraceLog)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 12:34:20Z
SessionEndTime2023-08-21 12:35:02Z
SessionEndTimeRelativeMSec
41788.8396
SessionDuration00:00:41.7888396
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [98, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [100, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [101, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\Fortunes_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
Benchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\xmtfecyd.cd2\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios DbFortunesRaw --urls http://10.0.0.104:5000 --server Kestrel --kestrelTransport Sockets --protocol 
NumberOfHeapCountSwitches
7
Benchmark
Fortunes
Id
datas_3 | Fortunes
TotalSuspensionTimeMSec
95.9111000000612
PercentPauseTimeInGC
4.956829346704313
PercentTimeInGC
4.640107094285031
MeanHeapSizeBeforeMB
71.19659317758773
MaxHeapSizeMB
83.083696
TotalAllocationsMB
66184.09164800002
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\Fortunes_Windows.gc.etl.zip
ProcessName
Benchmarks
datas_3 | JsonCrossgen2
Submission#4+LoadInfo
WorkingSetMB
NaN
PrivateMemoryMB
NaN
Latency50thMS
NaN
Latency75thMS
NaN
Latency90thMS
NaN
Latency99thMS
NaN
MeanLatencyMS
NaN
ProcessId
0
RequestsPerMSec
NaN
Run
datas_3
Data
<null>
Data2
<null>
CommandLine
<null>
NumberOfHeapCountSwitches
0
Benchmark
JsonCrossgen2
Id
datas_3 | JsonCrossgen2
TotalSuspensionTimeMSec
NaN
PercentPauseTimeInGC
NaN
PercentTimeInGC
NaN
MeanHeapSizeBeforeMB
NaN
MaxHeapSizeMB
NaN
TotalAllocationsMB
NaN
TracePath
<null>
ProcessName
<null>
datas_3 | JsonHttpsHttpSys
Submission#4+LoadInfo
WorkingSetMB
115
PrivateMemoryMB
98
Latency50thMS
0.56
Latency75thMS
0.76
Latency90thMS
1.03
Latency99thMS
2.25
MeanLatencyMS
0.66
ProcessId
9012
RequestsPerMSec
419.935
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
Benchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\0qvgxxuw.wqo\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios json --urls https://10.0.0.104:5000 --server HttpSys --kestrelTransport Sockets --protocol https 
ProcessID
9012
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.542688
PromotedMB
1.087648
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5141.1261
DurationMSec
4.509499999999207
PauseDurationMSec
4.840099999999438
SuspendDurationMSec
0.07729999999992287
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
5140.8671
PauseStartRelativeMSec
5140.8671
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4542688
TotalPromoted1087648
Depth0
GenerationSize02614720
TotalPromotedSize01087648
GenerationSize11083368
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4736320
TotalPromotedSize40
FinalizationPromotedSize30034
FinalizationPromotedCount20
PinnedObjectCount4
SinkBlockCount3
GCHandleCount607
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
0.6036496453201277
AllocRateMBSec
0
HeapSizePeakMB
2.742192
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.742192
GenSizeBeforeMB
[ 2.633912, 0, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
0.09406092907889198
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
5.471024
PromotedMB
1.3866
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
5149.9121
DurationMSec
3.803100000000086
PauseDurationMSec
3.9286999999994805
SuspendDurationMSec
0.06629999999950087
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
4.181800000000294
PauseStartRelativeMSec
5149.8184
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5471024
TotalPromoted1386600
Depth1
GenerationSize00
TotalPromotedSize0439392
GenerationSize13716008
TotalPromotedSize1947208
GenerationSize2881576
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4765160
TotalPromotedSize40
FinalizationPromotedSize1256
FinalizationPromotedCount21
PinnedObjectCount30
SinkBlockCount5
GCHandleCount630
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.372392
RatioPeakAfter
0.7001424230637628
AllocRateMBSec
567.3135970155994
HeapSizePeakMB
3.830496
UserAllocated
[ 2.372392, 0, 0, 0, 0 ]
HeapSizeBeforeMB
3.830496
GenSizeBeforeMB
[ 2.638848, 1.083368, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
48.43967696195783
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2N
HeapSizeAfterMB
5.140528
PromotedMB
1.658048
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
5163.0969
DurationMSec
5.974100000000362
PauseDurationMSec
6.148000000000138
SuspendDurationMSec
0.10969999999997526
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
9.236700000000383
PauseStartRelativeMSec
5162.9529
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5140528
TotalPromoted1658048
Depth2
GenerationSize02588760
TotalPromotedSize0256568
GenerationSize1258792
TotalPromotedSize1412944
GenerationSize21419536
TotalPromotedSize2880288
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize4765160
TotalPromotedSize40
FinalizationPromotedSize608
FinalizationPromotedCount4
PinnedObjectCount13
SinkBlockCount5
GCHandleCount631
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration2
Gen0ReductionCount27475
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.496624
RatioPeakAfter
1.4254068842733665
AllocRateMBSec
270.293936146015
HeapSizePeakMB
7.327344
UserAllocated
[ 2.496624, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.327344
GenSizeBeforeMB
[ 2.62148, 3.716008, 0.881576, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
39.96178021020839
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
2.78908
PromotedMB
0.61064
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
5213.3076
DurationMSec
1.9462000000003172
PauseDurationMSec
2.132699999999204
SuspendDurationMSec
0.009000000000014552
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
44.07480000000032
PauseStartRelativeMSec
5213.1468
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize2789080
TotalPromoted610640
Depth1
GenerationSize0584
TotalPromotedSize0462632
GenerationSize1470040
TotalPromotedSize1148008
GenerationSize21445016
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4765160
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount6
GCHandleCount478
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration1
Gen0ReductionCount267374
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated122528
FreeListConsumed122528
AllocedSinceLastGCMB
28.121544000000004
RatioPeakAfter
10.871255037503406
AllocRateMBSec
638.0413297394384
HeapSizePeakMB
30.3208
UserAllocated
[ 28.121512000000003, 0, 0, 3.200000000000425E-05, 0 ]
HeapSizeBeforeMB
30.3208
GenSizeBeforeMB
[ 28.534191999999997, 0.258792, 1.4195360000000001, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
4.615484499267923
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
28.582944
PromotedMB
0.47008
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
5
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5258.7431
DurationMSec
1.0648000000001048
PauseDurationMSec
1.3371999999999389
SuspendDurationMSec
0.0945000000001528
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
43.24229999999989
PauseStartRelativeMSec
5258.4977
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize28582944
TotalPromoted470080
Depth0
GenerationSize025329040
TotalPromotedSize0470080
GenerationSize1935448
TotalPromotedSize10
GenerationSize21445016
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4765160
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount34
SinkBlockCount6
GCHandleCount442
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration0
Gen0ReductionCount42
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
29.845263999999997
RatioPeakAfter
1.1321285868943383
AllocRateMBSec
690.1867846992429
HeapSizePeakMB
32.359568
UserAllocated
[ 29.845263999999997, 0, 0, 0, 0 ]
HeapSizeBeforeMB
32.359568
GenSizeBeforeMB
[ 30.336232000000003, 0.47004, 1.445016, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.9995850110475537
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.274744
PromotedMB
0.421
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5302.9516
DurationMSec
0.9404999999997017
PauseDurationMSec
1.1810999999997875
SuspendDurationMSec
0.06930000000011205
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
42.92779999999948
PauseStartRelativeMSec
5302.7369
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11274744
TotalPromoted421000
Depth0
GenerationSize07595152
TotalPromotedSize0421000
GenerationSize11361136
TotalPromotedSize10
GenerationSize21445016
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4765160
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount6
SinkBlockCount6
GCHandleCount256
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration0
Gen0ReductionCount23
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
30.015639999999998
RatioPeakAfter
2.9451609721693015
AllocRateMBSec
699.2121655430831
HeapSizePeakMB
33.205936
UserAllocated
[ 30.015639999999998, 0, 0, 0, 0 ]
HeapSizeBeforeMB
33.205936
GenSizeBeforeMB
[ 30.717192, 0.935448, 1.445016, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.677690896848045
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
21.49252
PromotedMB
0.260424
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5344.9892
DurationMSec
0.8352999999997337
PauseDurationMSec
1.1316999999999098
SuspendDurationMSec
0.11329999999998108
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
40.83009999999922
PauseStartRelativeMSec
5344.7233
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize21492520
TotalPromoted260424
Depth0
GenerationSize017553264
TotalPromotedSize0260424
GenerationSize11620800
TotalPromotedSize10
GenerationSize21445016
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4765160
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount15
SinkBlockCount6
GCHandleCount50
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration0
Gen0ReductionCount21
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
29.83548
RatioPeakAfter
1.549176736836816
AllocRateMBSec
730.7226776324469
HeapSizePeakMB
33.295712
UserAllocated
[ 29.83548, 0, 0, 0, 0 ]
HeapSizeBeforeMB
33.295712
GenSizeBeforeMB
[ 30.38128, 1.3611360000000001, 1.445016, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.6969767741134394
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
19.684624
PromotedMB
0.659464
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5389.0247
DurationMSec
1.0928000000003522
PauseDurationMSec
1.3900999999996202
SuspendDurationMSec
0.11799999999948341
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
42.92960000000039
PauseStartRelativeMSec
5388.7556
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize19684624
TotalPromoted659464
Depth0
GenerationSize015076384
TotalPromotedSize0659464
GenerationSize12285664
TotalPromotedSize10
GenerationSize21445016
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4769280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount17
SinkBlockCount6
GCHandleCount-69
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration0
Gen0ReductionCount19
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
29.116984
RatioPeakAfter
1.6899187914384346
AllocRateMBSec
678.2495993440361
HeapSizePeakMB
33.265416
UserAllocated
[ 29.116984, 0, 0, 0, 0 ]
HeapSizeBeforeMB
33.265416
GenSizeBeforeMB
[ 30.091320000000003, 1.6208, 1.445016, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.1365284512296334
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
22.722416
PromotedMB
0.44632
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5430.3204
DurationMSec
0.9729999999999563
PauseDurationMSec
1.2371000000002823
SuspendDurationMSec
0.08020000000033178
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
39.964600000000246
PauseStartRelativeMSec
5430.0832
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize22722416
TotalPromoted446320
Depth0
GenerationSize017666312
TotalPromotedSize0446320
GenerationSize12733528
TotalPromotedSize10
GenerationSize21445016
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4769280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount15
SinkBlockCount6
GCHandleCount-227
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration0
Gen0ReductionCount24
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
29.929296000000008
RatioPeakAfter
1.5116385511118187
AllocRateMBSec
748.8951722274169
HeapSizePeakMB
34.34808
UserAllocated
[ 29.929296000000008, 0, 0, 0, 0 ]
HeapSizeBeforeMB
34.34808
GenSizeBeforeMB
[ 30.50912, 2.285664, 1.445016, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.0025460114516305
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
25.40972
PromotedMB
0.495616
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
5471.7729
DurationMSec
0.9704000000001543
PauseDurationMSec
1.2687999999998283
SuspendDurationMSec
0.11599999999998545
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
40.20730000000003
PauseStartRelativeMSec
5471.5019
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize25409720
TotalPromoted495616
Depth1
GenerationSize022595592
TotalPromotedSize0429360
GenerationSize1425536
TotalPromotedSize166256
GenerationSize21511032
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4769280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount28
SinkBlockCount6
GCHandleCount-388
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration1
Gen0ReductionCount23
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated240
FreeListConsumed240
AllocedSinceLastGCMB
29.858911999999997
RatioPeakAfter
1.3688062678376622
AllocRateMBSec
742.6241503408578
HeapSizePeakMB
34.780984000000004
UserAllocated
[ 29.858911999999997, 0, 0, 0, 0 ]
HeapSizeBeforeMB
34.780984000000004
GenSizeBeforeMB
[ 30.494159999999997, 2.733528, 1.445016, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.0591111507587083
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
15.382552
PromotedMB
0.435032
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5512.4172
DurationMSec
0.9044000000003507
PauseDurationMSec
1.2409999999999854
SuspendDurationMSec
0.1554999999998472
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
39.35980000000018
PauseStartRelativeMSec
5512.1045
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize15382552
TotalPromoted435032
Depth0
GenerationSize012131104
TotalPromotedSize0435032
GenerationSize1862856
TotalPromotedSize10
GenerationSize21511032
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4769280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount14
SinkBlockCount6
GCHandleCount-477
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration0
Gen0ReductionCount22
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
29.632672
RatioPeakAfter
2.1126569895554397
AllocRateMBSec
752.8664271668013
HeapSizePeakMB
32.498056000000005
UserAllocated
[ 29.632672, 0, 0, 0, 0 ]
HeapSizeBeforeMB
32.498056000000005
GenSizeBeforeMB
[ 30.453208000000004, 0.425536, 1.5110320000000002, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.056590017930633
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.820968
PromotedMB
0.152704
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5553.0692
DurationMSec
0.6226999999998952
PauseDurationMSec
0.8640000000004875
SuspendDurationMSec
0.06040000000029977
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
39.532900000000154
PauseStartRelativeMSec
5552.856
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10820968
TotalPromoted152704
Depth0
GenerationSize07416104
TotalPromotedSize0152704
GenerationSize11016272
TotalPromotedSize10
GenerationSize21511032
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4769280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount7
SinkBlockCount6
GCHandleCount-599
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration0
Gen0ReductionCount21
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
29.501128
RatioPeakAfter
3.016786668253709
AllocRateMBSec
746.24244616509
HeapSizePeakMB
32.644552000000004
UserAllocated
[ 29.501128, 0, 0, 0, 0 ]
HeapSizeBeforeMB
32.644552000000004
GenSizeBeforeMB
[ 30.162384000000003, 0.8628560000000001, 1.5110320000000002, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.1387779755388996
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
29.350144
PromotedMB
0.827536
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5594.3103
DurationMSec
1.0375999999996566
PauseDurationMSec
1.2863999999999578
SuspendDurationMSec
0.03699999999935244
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
40.39850000000024
PauseStartRelativeMSec
5594.0919
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize29350144
TotalPromoted827536
Depth0
GenerationSize025115984
TotalPromotedSize0827536
GenerationSize11845568
TotalPromotedSize10
GenerationSize21511032
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4769280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount34
SinkBlockCount6
GCHandleCount-796
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration0
Gen0ReductionCount14
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
29.846512
RatioPeakAfter
1.1253126390112431
AllocRateMBSec
738.8024802901053
HeapSizePeakMB
33.028088000000004
UserAllocated
[ 29.846512, 0, 0, 0, 0 ]
HeapSizeBeforeMB
33.028088000000004
GenSizeBeforeMB
[ 30.392504, 1.016272, 1.5110320000000002, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.0860095622154584
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
26.938232
PromotedMB
0.410728
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5636.5112
DurationMSec
0.9515000000001237
PauseDurationMSec
1.2353999999995722
SuspendDurationMSec
0.09959999999955471
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
40.909200000000055
PauseStartRelativeMSec
5636.2586
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize26938232
TotalPromoted410728
Depth0
GenerationSize022293832
TotalPromotedSize0410728
GenerationSize12255808
TotalPromotedSize10
GenerationSize21511032
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4769280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount21
SinkBlockCount6
GCHandleCount-843
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration0
Gen0ReductionCount24
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
29.458352
RatioPeakAfter
1.2575007892128924
AllocRateMBSec
720.0911286458783
HeapSizePeakMB
33.87484799999999
UserAllocated
[ 29.458352, 0, 0, 0, 0 ]
HeapSizeBeforeMB
33.87484799999999
GenSizeBeforeMB
[ 30.409967999999996, 1.845568, 1.5110320000000002, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.931336398968274
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
23.359048
PromotedMB
0.707032
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
5680.2354
DurationMSec
0.9396000000006097
PauseDurationMSec
1.1768000000001848
SuspendDurationMSec
0.042400000000270666
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
42.574799999999414
PauseStartRelativeMSec
5680.0389
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize23359048
TotalPromoted707032
Depth1
GenerationSize020331304
TotalPromotedSize0703704
GenerationSize1635824
TotalPromotedSize13328
GenerationSize21514360
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4769280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount28
SinkBlockCount22
GCHandleCount-769
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration1
Gen0ReductionCount22
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
30.09944
RatioPeakAfter
1.486143784626839
AllocRateMBSec
706.9778366545567
HeapSizePeakMB
34.714904
UserAllocated
[ 30.09944, 0, 0, 0, 0 ]
HeapSizeBeforeMB
34.714904
GenSizeBeforeMB
[ 30.839783999999998, 2.255808, 1.5110320000000002, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.689730204152981
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
24.523008
PromotedMB
0.517688
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5720.1922
DurationMSec
0.9420000000000073
PauseDurationMSec
1.1601000000000568
SuspendDurationMSec
0.016599999999925785
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
38.834899999999834
PauseStartRelativeMSec
5720.0111
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize24523008
TotalPromoted517688
Depth0
GenerationSize020991104
TotalPromotedSize0517688
GenerationSize11135864
TotalPromotedSize10
GenerationSize21514360
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4773400
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount25
SinkBlockCount22
GCHandleCount-921
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration0
Gen0ReductionCount21
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
27.819944
RatioPeakAfter
1.3246306488991888
AllocRateMBSec
716.3645071829751
HeapSizePeakMB
32.483928
UserAllocated
[ 27.819944, 0, 0, 0, 0 ]
HeapSizeBeforeMB
32.483928
GenSizeBeforeMB
[ 30.225464, 0.635824, 1.5143600000000002, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.9006125765722213
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
20.28732
PromotedMB
0.461784
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5759.9934
DurationMSec
0.9420000000000073
PauseDurationMSec
1.1749999999992724
SuspendDurationMSec
0.015499999999519787
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
38.66710000000057
PauseStartRelativeMSec
5759.8028
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize20287320
TotalPromoted461784
Depth0
GenerationSize016283472
TotalPromotedSize0461784
GenerationSize11595448
TotalPromotedSize10
GenerationSize21514360
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4785760
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount27
SinkBlockCount22
GCHandleCount-968
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration0
Gen0ReductionCount23
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
28.463344
RatioPeakAfter
1.5879396588608057
AllocRateMBSec
736.1127159781721
HeapSizePeakMB
32.21504
UserAllocated
[ 28.463344, 0, 0, 0, 0 ]
HeapSizeBeforeMB
32.21504
GenSizeBeforeMB
[ 29.456536, 1.135864, 1.5143600000000002, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.9491417370050197
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
23.212448
PromotedMB
0.399056
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5801.9353
DurationMSec
0.9326000000000931
PauseDurationMSec
1.2012999999997191
SuspendDurationMSec
0.07069999999930587
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
40.77180000000044
PauseStartRelativeMSec
5801.7084
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize23212448
TotalPromoted399056
Depth0
GenerationSize018809976
TotalPromotedSize0399056
GenerationSize11994072
TotalPromotedSize10
GenerationSize21514360
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4785760
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount20
SinkBlockCount22
GCHandleCount-1075
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration0
Gen0ReductionCount23
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
28.436143999999995
RatioPeakAfter
1.4052594538930148
AllocRateMBSec
697.4463722474771
HeapSizePeakMB
32.619512
UserAllocated
[ 28.436143999999995, 0, 0, 0, 0 ]
HeapSizeBeforeMB
32.619512
GenSizeBeforeMB
[ 29.401423999999995, 1.5954480000000002, 1.5143600000000002, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.8620711836860147
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
21.317176
PromotedMB
0.541208
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5838.5125
DurationMSec
1.0223000000005413
PauseDurationMSec
1.3604000000004817
SuspendDurationMSec
0.1445000000003347
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
35.344600000000355
PauseStartRelativeMSec
5838.214
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize21317176
TotalPromoted541208
Depth0
GenerationSize016374400
TotalPromotedSize0541208
GenerationSize12534376
TotalPromotedSize10
GenerationSize21514360
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4785760
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount27
SinkBlockCount22
GCHandleCount-1099
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration0
Gen0ReductionCount21
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
25.786687999999998
RatioPeakAfter
1.490099814346891
AllocRateMBSec
729.5792850958771
HeapSizePeakMB
31.764720000000004
UserAllocated
[ 25.786687999999998, 0, 0, 0, 0 ]
HeapSizeBeforeMB
31.764720000000004
GenSizeBeforeMB
[ 28.148008000000004, 1.9940719999999998, 1.5143600000000002, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.7063070426384708
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
14.34876
PromotedMB
0.623368
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
5876.2458
DurationMSec
1.0160000000005311
PauseDurationMSec
1.3215000000000146
SuspendDurationMSec
0.1268000000000029
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
36.44080000000031
PauseStartRelativeMSec
5875.977
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize14348760
TotalPromoted623368
Depth1
GenerationSize011297152
TotalPromotedSize0281376
GenerationSize1317624
TotalPromotedSize1341992
GenerationSize21839944
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4785760
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount12
SinkBlockCount22
GCHandleCount-1253
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration1
Gen0ReductionCount27
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
27.21376
RatioPeakAfter
2.2570769878372765
AllocRateMBSec
746.7937037606137
HeapSizePeakMB
32.386256
UserAllocated
[ 27.21376, 0, 0, 0, 0 ]
HeapSizeBeforeMB
32.386256
GenSizeBeforeMB
[ 28.229239999999997, 2.534376, 1.5143600000000002, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.499522010047066
(1319 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.1991890963405474
MeanSizeAfterMB
16.114842587005235
MeanSizePeakMB
45.81949850336079
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1339
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
14.762300000002142
TotalPauseTimeMSec
1605.714199999993
MaxSuspendDurationMSec
13.664700000001176
MaxSizePeakMB
51.12072
MaxAllocRateMBSec
2193.6414867924614
TotalAllocatedMB
55110.21676000002
TotalCpuMSec
0
TotalPromotedMB
596.221968000001
TotalSizeAfterMB
21577.774224000008
TotalSizePeakMB
61352.3084960001
FinalizedObjects(empty)
ProcessDuration
30284.4863
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.1945011149228077
MeanSizeAfterMB
16.27452880274443
MeanSizePeakMB
45.7115424493997
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1166
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
13.4992000000002
TotalPauseTimeMSec
1392.7882999999938
MaxSuspendDurationMSec
11.946900000002643
MaxSizePeakMB
50.690400000000004
MaxAllocRateMBSec
2193.6414867924614
TotalAllocatedMB
48166.97300000005
TotalCpuMSec
0
TotalPromotedMB
538.0078720000005
TotalSizeAfterMB
18976.100584000007
TotalSizePeakMB
53299.658496000055
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.2058269005847888
MeanSizeAfterMB
15.020760561403506
MeanSizePeakMB
46.844731883040915
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
171
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
14.762300000002142
TotalPauseTimeMSec
206.1963999999989
MaxSuspendDurationMSec
13.664700000001176
MaxSizePeakMB
51.12072
MaxAllocRateMBSec
2160.7024561091844
TotalAllocatedMB
6940.747135999999
TotalCpuMSec
0
TotalPromotedMB
54.403864000000006
TotalSizeAfterMB
2568.5500559999996
TotalSizePeakMB
8010.4491519999965
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
3.3647500000001855
MeanSizeAfterMB
16.561792
MeanSizePeakMB
21.100423999999997
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
2
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
6.148000000000138
TotalPauseTimeMSec
6.729500000000371
MaxSuspendDurationMSec
0.10969999999997526
MaxSizePeakMB
34.873504
MaxAllocRateMBSec
270.293936146015
TotalAllocatedMB
2.496624
TotalCpuMSec
0
TotalPromotedMB
3.810232
TotalSizeAfterMB
33.123584
TotalSizePeakMB
42.20084799999999
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2N
HeapSizeAfterMB
5.140528
PromotedMB
1.658048
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
5163.0969
DurationMSec
5.974100000000362
PauseDurationMSec
6.148000000000138
SuspendDurationMSec
0.10969999999997526
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
9.236700000000383
PauseStartRelativeMSec
5162.9529
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5140528
TotalPromoted1658048
Depth2
GenerationSize02588760
TotalPromotedSize0256568
GenerationSize1258792
TotalPromotedSize1412944
GenerationSize21419536
TotalPromotedSize2880288
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize4765160
TotalPromotedSize40
FinalizationPromotedSize608
FinalizationPromotedCount4
PinnedObjectCount13
SinkBlockCount5
GCHandleCount631
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration2
Gen0ReductionCount27475
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.496624
RatioPeakAfter
1.4254068842733665
AllocRateMBSec
270.293936146015
HeapSizePeakMB
7.327344
UserAllocated
[ 2.496624, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.327344
GenSizeBeforeMB
[ 2.62148, 3.716008, 0.881576, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
39.96178021020839
BGCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
27.983056
PromotedMB
2.152184
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
77
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7695.5423
DurationMSec
5.419399999999769
PauseDurationMSec
0.5815000000002328
SuspendDurationMSec
0.09150000000045111
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
2.9908000000004904
PauseStartRelativeMSec
7695.3631
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0.5595999999995911
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize27983056
TotalPromoted2152184
Depth2
GenerationSize024787288
TotalPromotedSize0427752
GenerationSize1423936
TotalPromotedSize16400
GenerationSize21865432
TotalPromotedSize21609784
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize4798120
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount4
PinnedObjectCount0
SinkBlockCount22
GCHandleCount772
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.2462364367923215
AllocRateMBSec
0
HeapSizePeakMB
34.873504
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
24.312776
GenSizeBeforeMB
[ 19.201032, 3.144432, 1.859032, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
6.368886040527633
GCThreadIDsToHeapNumbers(empty)
DurationMSec
36901.866799999996
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="206336"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpsHttpSys_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 2:42:56 PM"\\r\\n SessionEndTime="8/21/2023 2:43:37 PM"\\r\\n SessionDuration="00:0...
Events
[ <Event MSec= "0.0000" PID="6512" PName="PerfView" TID="8476" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 2:43:34 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="540" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 2:42:56 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="6512" PName="PerfView" TID="8476" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "11.6691" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="6512" PName="PerfView" TID="8476" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "11.6388" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "11.6691" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "11.6895" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "11.6895" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", + "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337150792174.5
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="6512" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="155.8624" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmp15DB.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", + "
Count109
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="8476" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337150792174.5" /> ... (more) ]
Count1543
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", + "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="102" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1327" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="186" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="28" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="5" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", + " ... (more) ]
Count78
(values)
indexvalue
0\r\n", + "
1\r\n", + "
2\r\n", + "
3\r\n", + "
4\r\n", + "
5\r\n", + "
6\r\n", + "
7\r\n", + "
8\r\n", + "
9\r\n", + "
10\r\n", + "
11\r\n", + "
12\r\n", + "
13\r\n", + "
14\r\n", + "
15\r\n", + "
16\r\n", + "
17\r\n", + "
18\r\n", + "
19\r\n", + "
... (more)
MaxEventIndex206336
EventCount
206336
Size
38112967
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpsHttpSys_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", + "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", + "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", + "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", + "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", + " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", + " at lambda_method760(Closure, TraceLog)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 14:42:56Z
SessionEndTime2023-08-21 14:43:37Z
SessionEndTimeRelativeMSec
40842.082
SessionDuration00:00:40.8420820
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [100, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [98, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [102, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [103, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpsHttpSys_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
1GC.Analysis.API.GCProcessData
Benchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\0qvgxxuw.wqo\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios json --urls https://10.0.0.104:5000 --server HttpSys --kestrelTransport Sockets --protocol https 
NumberOfHeapCountSwitches
4
Benchmark
JsonHttpsHttpSys
Id
datas_3 | JsonHttpsHttpSys
TotalSuspensionTimeMSec
200.64140000000862
PercentPauseTimeInGC
5.302101492142507
PercentTimeInGC
4.639579440381607
MeanHeapSizeBeforeMB
45.81949850336079
MaxHeapSizeMB
51.12072
TotalAllocationsMB
55110.21676000002
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpsHttpSys_Windows.gc.etl.zip
ProcessName
Benchmarks
datas_3 | JsonHttpsIISInProc
Submission#4+LoadInfo
WorkingSetMB
112
PrivateMemoryMB
87
Latency50thMS
0.34
Latency75thMS
0.38
Latency90thMS
0.54
Latency99thMS
3.19
MeanLatencyMS
0.5
ProcessId
9160
RequestsPerMSec
675.651
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
Benchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\hanwmcy0.pca\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios json --urls https://10.0.0.104:5000 --server IISInProcess --kestrelTransport Sockets --protocol https 
ProcessID
9160
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.196288
PromotedMB
1.333936
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5746.4241
DurationMSec
5.5
PauseDurationMSec
5.764900000000125
SuspendDurationMSec
0.009599999999409192
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
5746.2231
PauseStartRelativeMSec
5746.2231
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4196288
TotalPromoted1333936
Depth0
GenerationSize00
TotalPromotedSize01333936
GenerationSize13887288
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize29770
FinalizationPromotedCount19
PinnedObjectCount33
SinkBlockCount4
GCHandleCount604
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
0.6525405310598319
AllocRateMBSec
0
HeapSizePeakMB
2.738248
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.738248
GenSizeBeforeMB
[ 2.629968, 0, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
0.10022447891059795
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
6.734136
PromotedMB
3.214872
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
5768.5581
DurationMSec
10.246299999999792
PauseDurationMSec
10.584799999999632
SuspendDurationMSec
0.2736000000004424
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
16.32930000000033
PauseStartRelativeMSec
5768.2545
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6734136
TotalPromoted3214872
Depth1
GenerationSize01472000
TotalPromotedSize01931768
GenerationSize13639936
TotalPromotedSize11283104
GenerationSize21263760
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4250160
TotalPromotedSize40
FinalizationPromotedSize832
FinalizationPromotedCount20
PinnedObjectCount21
SinkBlockCount4
GCHandleCount904
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.18244
RatioPeakAfter
0.9857133862458375
AllocRateMBSec
133.65177931693066
HeapSizePeakMB
6.637928
UserAllocated
[ 2.18244, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.637928
GenSizeBeforeMB
[ 2.64236, 3.887288, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
39.32808453561385
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
8.553824
PromotedMB
1.83372
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5792.0077
DurationMSec
6.197100000000319
PauseDurationMSec
6.30330000000049
SuspendDurationMSec
0.05850000000009459
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
13.123499999999694
PauseStartRelativeMSec
5791.9292
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8553824
TotalPromoted1833720
Depth0
GenerationSize02494824
TotalPromotedSize01833720
GenerationSize13802320
TotalPromotedSize10
GenerationSize21263760
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4884640
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount14
SinkBlockCount4
GCHandleCount1145
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount9379
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.274792
RatioPeakAfter
0.8924962683356589
AllocRateMBSec
173.33729569094018
HeapSizePeakMB
7.634256
UserAllocated
[ 2.274792, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.634256
GenSizeBeforeMB
[ 2.62228, 3.639936, 1.26376, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
32.44641423188806
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
13.54888
PromotedMB
5.170416
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
5912.284
DurationMSec
6.108600000000479
PauseDurationMSec
6.558600000000297
SuspendDurationMSec
0.11560000000008586
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
113.85379999999986
PauseStartRelativeMSec
5912.0596
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13548880
TotalPromoted5170416
Depth1
GenerationSize03381056
TotalPromotedSize01648368
GenerationSize13868176
TotalPromotedSize13522048
GenerationSize24750528
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41440840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount26
SinkBlockCount6
GCHandleCount1223
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration1
Gen0ReductionCount190001325
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
16.272384000000002
RatioPeakAfter
1.6066685954853837
AllocRateMBSec
142.9235036511739
HeapSizePeakMB
21.768560000000004
UserAllocated
[ 16.272352, 0, 0, 3.200000000000425E-05, 0 ]
HeapSizeBeforeMB
21.768560000000004
GenSizeBeforeMB
[ 16.5942, 3.80232, 1.26376, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.446781228511589
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
13.165904
PromotedMB
8.375448
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
5
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
6041.6467
DurationMSec
23.430099999999584
PauseDurationMSec
1.4184000000004744
SuspendDurationMSec
0.1419000000005326
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
20.99619999999959
PauseStartRelativeMSec
6041.467
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.329200000000128
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13165904
TotalPromoted8375448
Depth2
GenerationSize02952760
TotalPromotedSize05792
GenerationSize13868176
TotalPromotedSize13522048
GenerationSize24750528
TotalPromotedSize24739360
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize41486160
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount5
PinnedObjectCount0
SinkBlockCount7
GCHandleCount1237
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
2.0217768563404386
AllocRateMBSec
0
HeapSizePeakMB
26.618520000000004
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
12.10804
GenSizeBeforeMB
[ 3.381056, 3.868176, 4.750528, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.2122355372970626
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.866512
PromotedMB
0.005792
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6042.8244
DurationMSec
1.2570999999998094
PauseDurationMSec
1.8265999999994165
SuspendDurationMSec
0
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
124.43040000000019
PauseStartRelativeMSec
6042.8244
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11866512
TotalPromoted5792
Depth0
GenerationSize01653368
TotalPromotedSize05792
GenerationSize13868176
TotalPromotedSize10
GenerationSize24750528
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41486160
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount6
GCHandleCount1237
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount50
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure0
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.815992
RatioPeakAfter
2.2431629445956824
AllocRateMBSec
143.18038035721153
HeapSizePeakMB
26.618520000000004
UserAllocated
[ 17.707712, 0, 0, 0.10828, 0 ]
HeapSizeBeforeMB
26.618520000000004
GenSizeBeforeMB
[ 17.891536000000002, 3.8681760000000005, 4.750528, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.4467316663625955
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
9.856056
PromotedMB
1.726816
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6166.66
DurationMSec
2.3190999999997075
PauseDurationMSec
2.864400000000387
SuspendDurationMSec
0.08850000000074942
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
101.06829999999991
PauseStartRelativeMSec
6166.1473
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9856056
TotalPromoted1726816
Depth1
GenerationSize01658432
TotalPromotedSize047120
GenerationSize1203304
TotalPromotedSize11679696
GenerationSize26395760
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41490280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount8
SinkBlockCount6
GCHandleCount1237
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration1
Gen0ReductionCount9
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated1368
FreeListConsumed1368
AllocedSinceLastGCMB
15.655896
RatioPeakAfter
2.4909866583550255
AllocRateMBSec
154.90411929358677
HeapSizePeakMB
24.551304000000002
UserAllocated
[ 15.655928, 0, 0, -3.2E-05, 0 ]
HeapSizeBeforeMB
24.551304000000002
GenSizeBeforeMB
[ 15.82432, 3.8681760000000005, 4.750528, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.756014228438575
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
9.59848
PromotedMB
0.081592
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6285.6595
DurationMSec
0.9425000000001091
PauseDurationMSec
1.1682000000000698
SuspendDurationMSec
0.10689999999976862
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
116.48480000000018
PauseStartRelativeMSec
6285.4654
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9598480
TotalPromoted81592
Depth1
GenerationSize01472000
TotalPromotedSize03072
GenerationSize169952
TotalPromotedSize178520
GenerationSize26441488
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41506760
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount7
GCHandleCount1237
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration1
Gen0ReductionCount18
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.517528
RatioPeakAfter
2.544313682999808
AllocRateMBSec
150.3846682142217
HeapSizePeakMB
24.421543999999997
UserAllocated
[ 17.517528, 0, 0, 0, 0 ]
HeapSizeBeforeMB
24.421543999999997
GenSizeBeforeMB
[ 17.714199999999998, 0.20330399999999998, 6.39576, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
0.9929198575472511
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
9.616336
PromotedMB
0.001496
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6398.3523
DurationMSec
0.993600000000697
PauseDurationMSec
1.2452999999995882
SuspendDurationMSec
0.13500000000021828
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
111.52900000000045
PauseStartRelativeMSec
6398.1322
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9616336
TotalPromoted1496
Depth0
GenerationSize01472000
TotalPromotedSize01496
GenerationSize171328
TotalPromotedSize10
GenerationSize26441488
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41523240
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount8
GCHandleCount1237
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount7
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.461864000000002
RatioPeakAfter
2.5226747484696874
AllocRateMBSec
156.56792403769361
HeapSizePeakMB
24.258888000000002
UserAllocated
[ 17.461864000000002, 0, 0, 0, 0 ]
HeapSizeBeforeMB
24.258888000000002
GenSizeBeforeMB
[ 17.639168, 0.069952, 6.4414880000000005, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.1042409485136133
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
9.62244
PromotedMB
0.002408
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6509.7784
DurationMSec
1.1786999999994805
PauseDurationMSec
1.4034999999994398
SuspendDurationMSec
0.10239999999976135
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
110.23820000000069
PauseStartRelativeMSec
6509.5852
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9622440
TotalPromoted2408
Depth0
GenerationSize01472000
TotalPromotedSize02408
GenerationSize173312
TotalPromotedSize10
GenerationSize26441488
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41527360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount8
GCHandleCount1237
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount8
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.726952
RatioPeakAfter
2.550657837305299
AllocRateMBSec
160.80589124278055
HeapSizePeakMB
24.543552000000002
UserAllocated
[ 17.726952, 0, 0, 0, 0 ]
HeapSizeBeforeMB
24.543552000000002
GenSizeBeforeMB
[ 17.922456, 0.07132800000000002, 6.4414880000000005, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.2571467471378868
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
9.623776
PromotedMB
0.002024
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6614.4028
DurationMSec
1.0778000000000247
PauseDurationMSec
1.2593999999999141
SuspendDurationMSec
0.044999999999163265
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
103.29370000000017
PauseStartRelativeMSec
6614.252
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9623776
TotalPromoted2024
Depth0
GenerationSize01472000
TotalPromotedSize02024
GenerationSize174648
TotalPromotedSize10
GenerationSize26441488
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41527360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount8
GCHandleCount1237
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount10
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.574887999999998
RatioPeakAfter
2.536034920181019
AllocRateMBSec
170.1448200616298
HeapSizePeakMB
24.406232000000003
UserAllocated
[ 17.574887999999998, 0, 0, 0, 0 ]
HeapSizeBeforeMB
24.406232000000003
GenSizeBeforeMB
[ 17.783152, 0.073312, 6.4414880000000005, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.2045553886014984
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.177976
PromotedMB
0.285184
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6713.7328
DurationMSec
1.1147000000000844
PauseDurationMSec
1.3024999999997817
SuspendDurationMSec
0.03799999999955617
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
98.09980000000087
PauseStartRelativeMSec
6713.5816
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10177976
TotalPromoted285184
Depth0
GenerationSize01802568
TotalPromotedSize0285184
GenerationSize1294160
TotalPromotedSize10
GenerationSize26441488
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41531480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount12
GCHandleCount1290
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount10
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
16.698904
RatioPeakAfter
2.3170060530698837
AllocRateMBSec
170.22362940597077
HeapSizePeakMB
23.582432
UserAllocated
[ 16.698904, 0, 0, 0, 0 ]
HeapSizeBeforeMB
23.582432
GenSizeBeforeMB
[ 16.958016, 0.074648, 6.4414880000000005, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.3103318534880715
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.018904
PromotedMB
0.067784
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6832.178
DurationMSec
1.0874000000003434
PauseDurationMSec
1.2887999999993554
SuspendDurationMSec
0.07179999999971187
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
117.15890000000036
PauseStartRelativeMSec
6832.0074
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10018904
TotalPromoted67784
Depth0
GenerationSize01604784
TotalPromotedSize067784
GenerationSize1328752
TotalPromotedSize10
GenerationSize26441488
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41535600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount12
GCHandleCount1293
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount11
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.283472
RatioPeakAfter
2.4355063188548374
AllocRateMBSec
147.52163087908767
HeapSizePeakMB
24.401104000000004
UserAllocated
[ 17.283472, 0, 0, 0, 0 ]
HeapSizeBeforeMB
24.401104000000004
GenSizeBeforeMB
[ 17.557176000000002, 0.29416, 6.4414880000000005, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.0880751589092557
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
9.971304
PromotedMB
0.085536
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6948.8917
DurationMSec
0.9862999999995736
PauseDurationMSec
1.2466000000003987
SuspendDurationMSec
0.13060000000041327
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
115.39789999999994
PauseStartRelativeMSec
6948.6644
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9971304
TotalPromoted85536
Depth0
GenerationSize01472000
TotalPromotedSize085536
GenerationSize1413936
TotalPromotedSize10
GenerationSize26441488
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41535600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount13
GCHandleCount1299
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount9
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.371032
RatioPeakAfter
2.4531844581210245
AllocRateMBSec
150.5316127936471
HeapSizePeakMB
24.461448000000004
UserAllocated
[ 17.371032, 0, 0, 0, 0 ]
HeapSizeBeforeMB
24.461448000000004
GenSizeBeforeMB
[ 17.582928000000003, 0.328752, 6.4414880000000005, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.0687173420096063
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.021232
PromotedMB
0.050048
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7065.3824
DurationMSec
0.9170999999996639
PauseDurationMSec
1.1770000000005894
SuspendDurationMSec
0.12580000000070868
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
115.27839999999924
PauseStartRelativeMSec
7065.1576
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10021232
TotalPromoted50048
Depth0
GenerationSize01472000
TotalPromotedSize050048
GenerationSize1463864
TotalPromotedSize10
GenerationSize26441488
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41535600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount14
GCHandleCount1299
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount8
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.389664
RatioPeakAfter
2.450351014725535
AllocRateMBSec
150.84928312676195
HeapSizePeakMB
24.555536
UserAllocated
[ 17.389664, 0, 0, 0, 0 ]
HeapSizeBeforeMB
24.555536
GenSizeBeforeMB
[ 17.591832, 0.41393599999999997, 6.4414880000000005, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.0106873532705147
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.021584
PromotedMB
0.000544
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7177.3007
DurationMSec
0.8872000000001208
PauseDurationMSec
1.2232999999996537
SuspendDurationMSec
0.1356999999998152
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
110.70110000000022
PauseStartRelativeMSec
7177.0018
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10021584
TotalPromoted544
Depth0
GenerationSize01472000
TotalPromotedSize0544
GenerationSize1464216
TotalPromotedSize10
GenerationSize26441488
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41535600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount14
GCHandleCount1299
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount7
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.342336
RatioPeakAfter
2.4493365519861934
AllocRateMBSec
156.6591117884101
HeapSizePeakMB
24.546232000000003
UserAllocated
[ 17.342336, 0, 0, 0, 0 ]
HeapSizeBeforeMB
24.546232000000003
GenSizeBeforeMB
[ 17.532600000000002, 0.463864, 6.4414880000000005, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.0929698975376727
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.022344
PromotedMB
0.00088
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7290.3079
DurationMSec
0.9517000000005282
PauseDurationMSec
1.144800000000032
SuspendDurationMSec
0.06549999999970169
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
111.95650000000023
PauseStartRelativeMSec
7290.1458
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10022344
TotalPromoted880
Depth0
GenerationSize01472000
TotalPromotedSize0880
GenerationSize1464976
TotalPromotedSize10
GenerationSize26441488
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41535600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount15
GCHandleCount1299
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount7
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.633927999999997
RatioPeakAfter
2.479888537052809
AllocRateMBSec
157.5069602926133
HeapSizePeakMB
24.854296
UserAllocated
[ 17.633927999999997, 0, 0, 0, 0 ]
HeapSizeBeforeMB
24.854296
GenSizeBeforeMB
[ 17.840312, 0.464216, 6.4414880000000005, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.0121899571446387
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.028648
PromotedMB
0.002256
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7399.8889
DurationMSec
1.1900000000005093
PauseDurationMSec
1.392800000000534
SuspendDurationMSec
0.07050000000072032
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
108.45799999999963
PauseStartRelativeMSec
7399.7188
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10028648
TotalPromoted2256
Depth0
GenerationSize01472000
TotalPromotedSize02256
GenerationSize1467160
TotalPromotedSize10
GenerationSize26441488
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41539720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount16
GCHandleCount1299
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount8
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.427055999999997
RatioPeakAfter
2.4547245052373956
AllocRateMBSec
160.68022644710447
HeapSizePeakMB
24.617568
UserAllocated
[ 17.427055999999997, 0, 0, 0, 0 ]
HeapSizeBeforeMB
24.617568
GenSizeBeforeMB
[ 17.602824, 0.464976, 6.4414880000000005, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.2679015537442895
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.029328
PromotedMB
0.000848
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7505.633
DurationMSec
0.9293999999999869
PauseDurationMSec
1.111800000000585
SuspendDurationMSec
0.05029999999987922
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
104.40269999999964
PauseStartRelativeMSec
7505.4828
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10029328
TotalPromoted848
Depth0
GenerationSize01472000
TotalPromotedSize0848
GenerationSize1467840
TotalPromotedSize10
GenerationSize26441488
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41539720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount16
GCHandleCount1299
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount10
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.584304
RatioPeakAfter
2.4730103552301808
AllocRateMBSec
168.42767476320114
HeapSizePeakMB
24.802632
UserAllocated
[ 17.584304, 0, 0, 0, 0 ]
HeapSizeBeforeMB
24.802632
GenSizeBeforeMB
[ 17.785704, 0.46716, 6.4414880000000005, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.0536940420516447
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.030776
PromotedMB
0.001568
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7608.7688
DurationMSec
1.0142000000005282
PauseDurationMSec
1.2177000000001499
SuspendDurationMSec
0.06260000000020227
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
102.03759999999966
PauseStartRelativeMSec
7608.6011
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10030776
TotalPromoted1568
Depth0
GenerationSize01472000
TotalPromotedSize01568
GenerationSize1469288
TotalPromotedSize10
GenerationSize26441488
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41539720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount17
GCHandleCount1299
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount8
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.441224
RatioPeakAfter
2.4605155174435156
AllocRateMBSec
170.92938289414937
HeapSizePeakMB
24.68088
UserAllocated
[ 17.441224, 0, 0, 0, 0 ]
HeapSizeBeforeMB
24.68088
GenSizeBeforeMB
[ 17.663272, 0.46784000000000003, 6.4414880000000005, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.1793099240427873
(367 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.5216315245478107
MeanSizeAfterMB
12.945176103359168
MeanSizePeakMB
19.934799049095588
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
387
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
10.584799999999632
TotalPauseTimeMSec
588.8714000000027
MaxSuspendDurationMSec
0.2736000000004424
MaxSizePeakMB
26.618520000000004
MaxAllocRateMBSec
235.9653454356068
TotalAllocatedMB
3775.8781999999987
TotalCpuMSec
0
TotalPromotedMB
44.715495999999874
TotalSizeAfterMB
5009.783151999998
TotalSizePeakMB
7714.767231999993
FinalizedObjects(empty)
ProcessDuration
30293.592999999997
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.472460212201573
MeanSizeAfterMB
12.941785697612726
MeanSizePeakMB
19.88674368169759
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
377
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
6.30330000000049
TotalPauseTimeMSec
555.117499999993
MaxSuspendDurationMSec
0.2187000000012631
MaxSizePeakMB
26.618520000000004
MaxAllocRateMBSec
235.9653454356068
TotalAllocatedMB
3685.4609679999994
TotalCpuMSec
0
TotalPromotedMB
8.709191999999994
TotalSizeAfterMB
4879.0532079999975
TotalSizePeakMB
7497.3023679999915
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
3.882475000000909
MeanSizeAfterMB
12.366709
MeanSizePeakMB
20.583168999999998
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
8
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
10.584799999999632
TotalPauseTimeMSec
31.05980000000727
MaxSuspendDurationMSec
0.2736000000004424
MaxSizePeakMB
25.057152000000002
MaxAllocRateMBSec
177.10411631402604
TotalAllocatedMB
90.417232
TotalCpuMSec
0
TotalPromotedMB
16.313128
TotalSizeAfterMB
98.933672
TotalSizePeakMB
164.66535199999998
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.347050000001218
MeanSizeAfterMB
15.898136000000001
MeanSizePeakMB
26.399756000000004
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
2
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
1.4184000000004744
TotalPauseTimeMSec
2.694100000002436
MaxSuspendDurationMSec
0.19529999999940628
MaxSizePeakMB
26.618520000000004
MaxAllocRateMBSec
0
TotalAllocatedMB
0
TotalCpuMSec
0
TotalPromotedMB
19.693176
TotalSizeAfterMB
31.796272000000002
TotalSizePeakMB
52.79951200000001
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking(empty)
BGCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
13.165904
PromotedMB
8.375448
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
5
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
6041.6467
DurationMSec
23.430099999999584
PauseDurationMSec
1.4184000000004744
SuspendDurationMSec
0.1419000000005326
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
20.99619999999959
PauseStartRelativeMSec
6041.467
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.329200000000128
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13165904
TotalPromoted8375448
Depth2
GenerationSize02952760
TotalPromotedSize05792
GenerationSize13868176
TotalPromotedSize13522048
GenerationSize24750528
TotalPromotedSize24739360
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize41486160
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount5
PinnedObjectCount0
SinkBlockCount7
GCHandleCount1237
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
2.0217768563404386
AllocRateMBSec
0
HeapSizePeakMB
26.618520000000004
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
12.10804
GenSizeBeforeMB
[ 3.381056, 3.868176, 4.750528, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.2122355372970626
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
18.630368
PromotedMB
11.317728
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
154
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
21336.9288
DurationMSec
42.221999999997934
PauseDurationMSec
1.2757000000019616
SuspendDurationMSec
0.19529999999940628
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
41.126899999999296
PauseStartRelativeMSec
21336.81
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.2070000000021537
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize18630368
TotalPromoted11317728
Depth2
GenerationSize03586408
TotalPromotedSize035768
GenerationSize12873168
TotalPromotedSize14322512
GenerationSize210514552
TotalPromotedSize26851200
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize41547960
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount5
PinnedObjectCount0
SinkBlockCount23
GCHandleCount1408
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.4052858215146367
AllocRateMBSec
0
HeapSizePeakMB
26.180992
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.602584
GenSizeBeforeMB
[ 2.140032, 2.83972, 10.514552, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.8234078253727768
GCThreadIDsToHeapNumbers(empty)
DurationMSec
38149.7459
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="19163"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpsIISInProc_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 2:27:54 PM"\\r\\n SessionEndTime="8/21/2023 2:28:36 PM"\\r\\n SessionDuration="00:...
Events
[ <Event MSec= "0.0000" PID="2076" PName="PerfView" TID="12132" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 2:28:33 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="91" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 2:27:54 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="2076" PName="PerfView" TID="12132" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "8.8124" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="2076" PName="PerfView" TID="12132" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "8.7809" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "8.8124" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "8.8320" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "8.8320" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", + "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337151694059
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="2076" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="155.9807" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmp52D6.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", + "
Count108
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="12132" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337151694059" /> ... (more) ]
Count1626
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", + "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="102" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1375" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="219" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="28" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="5" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", + " ... (more) ]
Count78
(values)
indexvalue
0\r\n", + "
1\r\n", + "
2\r\n", + "
3\r\n", + "
4\r\n", + "
5\r\n", + "
6\r\n", + "
7\r\n", + "
8\r\n", + "
9\r\n", + "
10\r\n", + "
11\r\n", + "
12\r\n", + "
13\r\n", + "
14\r\n", + "
15\r\n", + "
16\r\n", + "
17\r\n", + "
18\r\n", + "
19\r\n", + "
... (more)
MaxEventIndex19163
EventCount
19163
Size
4529460
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpsIISInProc_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", + "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", + "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", + "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", + "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", + " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", + " at lambda_method760(Closure, TraceLog)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 14:27:54Z
SessionEndTime2023-08-21 14:28:36Z
SessionEndTimeRelativeMSec
42082.4007
SessionDuration00:00:42.0824007
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [100, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [98, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [102, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [103, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpsIISInProc_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
1GC.Analysis.API.GCProcessData
Benchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\hanwmcy0.pca\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios json --urls https://10.0.0.104:5000 --server IISInProcess --kestrelTransport Sockets --protocol https 
NumberOfHeapCountSwitches
7
Benchmark
JsonHttpsIISInProc
Id
datas_3 | JsonHttpsIISInProc
TotalSuspensionTimeMSec
32.259700000012344
PercentPauseTimeInGC
1.9438810048052169
PercentTimeInGC
1.8373908304636908
MeanHeapSizeBeforeMB
19.934799049095588
MaxHeapSizeMB
26.618520000000004
TotalAllocationsMB
3775.8781999999987
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpsIISInProc_Windows.gc.etl.zip
ProcessName
Benchmarks
datas_3 | JsonHttpsIISOutOfProc
Submission#4+LoadInfo
WorkingSetMB
116
PrivateMemoryMB
82
Latency50thMS
0.34
Latency75thMS
0.38
Latency90thMS
0.51
Latency99thMS
2.31
MeanLatencyMS
0.48
ProcessId
5684
RequestsPerMSec
682.929
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
Benchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\adkpe31d.ocy\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios json --urls https://10.0.0.104:5000 --server IISOutOfProcess --kestrelTransport Sockets --protocol https 
ProcessID
5684
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.195352
PromotedMB
1.316576
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6703.0297
DurationMSec
5.216800000000148
PauseDurationMSec
5.4780000000000655
SuspendDurationMSec
0.0091999999995096
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
6702.8297
PauseStartRelativeMSec
6702.8297
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4195352
TotalPromoted1316576
Depth0
GenerationSize00
TotalPromotedSize01316576
GenerationSize13886352
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize29770
FinalizationPromotedCount19
PinnedObjectCount27
SinkBlockCount5
GCHandleCount604
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
0.6526861154916203
AllocRateMBSec
0
HeapSizePeakMB
2.738248
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.738248
GenSizeBeforeMB
[ 2.629968, 0, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
0.08165993936145871
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
7.440464
PromotedMB
3.183064
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6725.0316
DurationMSec
6.822499999999309
PauseDurationMSec
6.928200000000288
SuspendDurationMSec
0.058399999999892316
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
16.704600000000028
PauseStartRelativeMSec
6724.9524
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize7440464
TotalPromoted3183064
Depth1
GenerationSize03942128
TotalPromotedSize01918672
GenerationSize11905928
TotalPromotedSize11264392
GenerationSize21246328
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4237800
TotalPromotedSize40
FinalizationPromotedSize832
FinalizationPromotedCount20
PinnedObjectCount14
SinkBlockCount4
GCHandleCount869
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.160472
RatioPeakAfter
0.8892284137118329
AllocRateMBSec
129.3339559163342
HeapSizePeakMB
6.6162719999999995
UserAllocated
[ 2.160472, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.6162719999999995
GenSizeBeforeMB
[ 2.62164, 3.886352, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
29.316035340713736
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
9.208216
PromotedMB
1.524808
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6741.9946
DurationMSec
4.891700000000128
PauseDurationMSec
5.106200000000172
SuspendDurationMSec
0.12210000000050059
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
9.95510000000013
PauseStartRelativeMSec
6741.8102
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9208216
TotalPromoted1524808
Depth0
GenerationSize01429832
TotalPromotedSize01524808
GenerationSize15769856
TotalPromotedSize10
GenerationSize21246328
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4653920
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount14
SinkBlockCount4
GCHandleCount960
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount55000288
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.282384
RatioPeakAfter
0.7821997225086813
AllocRateMBSec
229.26781247802336
HeapSizePeakMB
7.2026639999999995
UserAllocated
[ 2.282384, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.2026639999999995
GenSizeBeforeMB
[ 3.942128, 1.905928, 1.246328, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
33.90278395623266
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
16.080776
PromotedMB
5.091704
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6835.4939
DurationMSec
6.605799999999363
PauseDurationMSec
6.820700000000215
SuspendDurationMSec
0.07750000000032742
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
88.4426999999996
PauseStartRelativeMSec
6835.3299
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize16080776
TotalPromoted5091704
Depth1
GenerationSize04468744
TotalPromotedSize01809120
GenerationSize16094592
TotalPromotedSize13282584
GenerationSize23993040
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41416120
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount37
SinkBlockCount4
GCHandleCount1221
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration1
Gen0ReductionCount248001332
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.8754
RatioPeakAfter
1.2557319373144677
AllocRateMBSec
145.57900199790438
HeapSizePeakMB
20.193143999999997
UserAllocated
[ 12.875368000000002, 0, 0, 3.200000000000425E-05, 0 ]
HeapSizeBeforeMB
20.193143999999997
GenSizeBeforeMB
[ 13.068679999999999, 5.769856, 1.246328, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
7.159832632469793
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
18.935488
PromotedMB
7.374544
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
5
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
6940.4491
DurationMSec
58.58420000000024
PauseDurationMSec
1.6694000000006781
SuspendDurationMSec
0.12190000000009604
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
56.22240000000056
PauseStartRelativeMSec
6940.3205
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.6201000000000931
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize18935488
TotalPromoted7374544
Depth2
GenerationSize07249296
TotalPromotedSize03784
GenerationSize16094592
TotalPromotedSize13282584
GenerationSize23993040
TotalPromotedSize23979928
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize41490280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount5
PinnedObjectCount0
SinkBlockCount4
GCHandleCount1235
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.324767547580501
AllocRateMBSec
0
HeapSizePeakMB
25.085120000000003
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.664656
GenSizeBeforeMB
[ 4.468744, 6.094592, 3.99304, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.252353861761318
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.665424
PromotedMB
0.003784
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6941.4419
DurationMSec
1.370600000000195
PauseDurationMSec
1.8653000000003885
SuspendDurationMSec
0
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
99.34090000000015
PauseStartRelativeMSec
6941.4419
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11665424
TotalPromoted3784
Depth0
GenerationSize03952
TotalPromotedSize03784
GenerationSize16094592
TotalPromotedSize10
GenerationSize23993040
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41465560
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount4
GCHandleCount1233
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration0
Gen0ReductionCount1069
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure0
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
14.826048
RatioPeakAfter
2.150382189280047
AllocRateMBSec
149.2441481806585
HeapSizePeakMB
25.085120000000003
UserAllocated
[ 14.717768, 0, 0, 0.10828, 0 ]
HeapSizeBeforeMB
25.085120000000003
GenSizeBeforeMB
[ 14.889208000000002, 6.094592, 3.9930399999999997, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.843068902893675
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
11.199032
PromotedMB
2.348288
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7044.8253
DurationMSec
2.878600000000006
PauseDurationMSec
3.4150999999992564
SuspendDurationMSec
0.08919999999943684
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
45.28650000000016
PauseStartRelativeMSec
7044.3226
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11199032
TotalPromoted2348288
Depth1
GenerationSize0136
TotalPromotedSize04264
GenerationSize13374824
TotalPromotedSize12344024
GenerationSize26200792
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41515000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount15
SinkBlockCount5
GCHandleCount1233
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration1
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated2968
FreeListConsumed3000
AllocedSinceLastGCMB
8.51792
RatioPeakAfter
1.6930120388976475
AllocRateMBSec
188.0896072781065
HeapSizePeakMB
18.960096
UserAllocated
[ 8.517952, 0, 0, -3.2E-05, 0 ]
HeapSizeBeforeMB
18.960096
GenSizeBeforeMB
[ 8.764184, 6.094592, 3.9930399999999997, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
7.012295283931734
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
13.69552
PromotedMB
8.644408
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
8
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7151.4115
DurationMSec
19.098500000000058
PauseDurationMSec
1.6154999999998836
SuspendDurationMSec
0.2845999999999549
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
17.735099999999875
PauseStartRelativeMSec
7151.2357
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.518699999999626
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13695520
TotalPromoted8644408
Depth2
GenerationSize02483648
TotalPromotedSize01752
GenerationSize13375440
TotalPromotedSize12344024
GenerationSize26200792
TotalPromotedSize26190384
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize41527360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount4
PinnedObjectCount0
SinkBlockCount7
GCHandleCount1235
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.8290991506711682
AllocRateMBSec
0
HeapSizePeakMB
25.050463999999998
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
9.684032
GenSizeBeforeMB
[ 0.000136, 3.374824, 6.200792, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.7030416241542743
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.211872
PromotedMB
0.001752
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7151.5133
DurationMSec
1.2625000000007276
PauseDurationMSec
1.704000000000633
SuspendDurationMSec
0
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
103.80799999999999
PauseStartRelativeMSec
7151.5133
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11211872
TotalPromoted1752
Depth0
GenerationSize00
TotalPromotedSize01752
GenerationSize13375440
TotalPromotedSize10
GenerationSize26200792
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41527360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount6
GCHandleCount1233
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration0
Gen0ReductionCount27
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure0
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
15.300192
RatioPeakAfter
2.2342802343801282
AllocRateMBSec
147.38933415536374
HeapSizePeakMB
25.050463999999998
UserAllocated
[ 15.191944, 0, 0, 0.108248, 0 ]
HeapSizeBeforeMB
25.050463999999998
GenSizeBeforeMB
[ 15.366568, 3.3748240000000003, 6.200791999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.6149821821220551
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
10.948984
PromotedMB
0.13856
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7244.6841
DurationMSec
1.2427999999999884
PauseDurationMSec
1.4265000000004875
SuspendDurationMSec
0.073500000000422
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
74.01919999999973
PauseStartRelativeMSec
7244.5314
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10948984
TotalPromoted138560
Depth1
GenerationSize00
TotalPromotedSize01936
GenerationSize12969728
TotalPromotedSize1136624
GenerationSize26335376
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41535600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount7
GCHandleCount1233
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration1
Gen0ReductionCount11
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated1272
FreeListConsumed1272
AllocedSinceLastGCMB
13.060528000000001
RatioPeakAfter
2.0930226950738082
AllocRateMBSec
176.44784056028774
HeapSizePeakMB
22.916472000000002
UserAllocated
[ 13.060528000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
22.916472000000002
GenSizeBeforeMB
[ 13.23196, 3.3754399999999998, 6.200791999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.890763820867834
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
10.875456
PromotedMB
0.001488
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7337.3841
DurationMSec
0.9354999999995925
PauseDurationMSec
1.1784999999999854
SuspendDurationMSec
0.12879999999950087
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
91.2441000000008
PauseStartRelativeMSec
7337.1724
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10875456
TotalPromoted1488
Depth1
GenerationSize02895160
TotalPromotedSize0608
GenerationSize1680
TotalPromotedSize1880
GenerationSize26335736
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41535600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount7
GCHandleCount1233
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration1
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated280
FreeListConsumed280
AllocedSinceLastGCMB
15.140287999999998
RatioPeakAfter
2.2723887623654586
AllocRateMBSec
165.93169311769051
HeapSizePeakMB
24.713264
UserAllocated
[ 15.140287999999998, 0, 0, 0, 0 ]
HeapSizeBeforeMB
24.713264
GenSizeBeforeMB
[ 15.299879999999998, 2.9697280000000004, 6.335376000000001, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.2751210201833485
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.87664
PromotedMB
0.001304
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7430.3957
DurationMSec
0.9633000000003449
PauseDurationMSec
1.1518999999998414
SuspendDurationMSec
0.07880000000022847
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
91.91769999999997
PauseStartRelativeMSec
7430.2388
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10876640
TotalPromoted1304
Depth0
GenerationSize02895160
TotalPromotedSize01304
GenerationSize11864
TotalPromotedSize10
GenerationSize26335736
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41535600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount7
GCHandleCount1233
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration0
Gen0ReductionCount9
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
15.306512
RatioPeakAfter
2.0418761676400066
AllocRateMBSec
166.52409709990573
HeapSizePeakMB
22.208752
UserAllocated
[ 15.306512, 0, 0, 0, 0 ]
HeapSizeBeforeMB
22.208752
GenSizeBeforeMB
[ 15.764056, 0.00068, 6.335736000000001, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.2376758898714981
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.891696
PromotedMB
0.002792
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7515.4447
DurationMSec
1.2107999999998356
PauseDurationMSec
1.3769000000002052
SuspendDurationMSec
0.05500000000029104
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
83.94880000000012
PauseStartRelativeMSec
7515.3093
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10891696
TotalPromoted2792
Depth0
GenerationSize02895160
TotalPromotedSize02792
GenerationSize14560
TotalPromotedSize10
GenerationSize26335736
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41547960
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount7
GCHandleCount1233
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration0
Gen0ReductionCount10
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
15.118911999999998
RatioPeakAfter
2.036415999858975
AllocRateMBSec
180.09682091941727
HeapSizePeakMB
22.180024
UserAllocated
[ 15.118911999999998, 0, 0, 0, 0 ]
HeapSizeBeforeMB
22.180024
GenSizeBeforeMB
[ 15.734143999999999, 0.0018639999999999998, 6.335736000000001, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.613699037921986
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
16.64704
PromotedMB
0.857632
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7593.6374
DurationMSec
1.480600000000777
PauseDurationMSec
1.6463999999996304
SuspendDurationMSec
0.042599999999765714
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
76.85130000000026
PauseStartRelativeMSec
7593.5082
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize16647040
TotalPromoted857632
Depth0
GenerationSize07818304
TotalPromotedSize0857632
GenerationSize1828520
TotalPromotedSize10
GenerationSize26335736
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41556200
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount10
SinkBlockCount18
GCHandleCount1391
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
14.520384
RatioPeakAfter
1.3108607896659106
AllocRateMBSec
188.9412931206102
HeapSizePeakMB
21.821952
UserAllocated
[ 14.520384, 0, 0, 0, 0 ]
HeapSizeBeforeMB
21.821952
GenSizeBeforeMB
[ 15.373375999999999, 0.00456, 6.335736000000001, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.0973862928463287
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
13.04476
PromotedMB
0.035752
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7674.2119
DurationMSec
1.1123999999999796
PauseDurationMSec
1.2890999999999622
SuspendDurationMSec
0.04629999999997381
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
78.94790000000012
PauseStartRelativeMSec
7674.0673
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13044760
TotalPromoted35752
Depth0
GenerationSize04180624
TotalPromotedSize035752
GenerationSize1863920
TotalPromotedSize10
GenerationSize26335736
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41556200
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount18
GCHandleCount1391
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration0
Gen0ReductionCount18
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
14.144504
RatioPeakAfter
1.6905436359120443
AllocRateMBSec
179.16251097242585
HeapSizePeakMB
22.052736
UserAllocated
[ 14.144504, 0, 0, 0, 0 ]
HeapSizeBeforeMB
22.052736
GenSizeBeforeMB
[ 14.780199999999999, 0.8285199999999999, 6.335736000000001, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.6066154018719057
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.798544
PromotedMB
0.0352
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7770.0045
DurationMSec
1.2587000000003172
PauseDurationMSec
1.4675999999999476
SuspendDurationMSec
0.08799999999973807
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
94.50200000000041
PauseStartRelativeMSec
7769.8278
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11798544
TotalPromoted35200
Depth0
GenerationSize02895160
TotalPromotedSize035200
GenerationSize1899048
TotalPromotedSize10
GenerationSize26335736
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41560320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount18
GCHandleCount1391
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
15.081808
RatioPeakAfter
1.9522558037669735
AllocRateMBSec
159.59247423334887
HeapSizePeakMB
23.033776000000003
UserAllocated
[ 15.081808, 0, 0, 0, 0 ]
HeapSizeBeforeMB
23.033776000000003
GenSizeBeforeMB
[ 15.725840000000002, 0.86392, 6.335736000000001, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.5292342575148195
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.807624
PromotedMB
0.00096
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7862.8809
DurationMSec
1.0951999999997497
PauseDurationMSec
1.2714999999998327
SuspendDurationMSec
0.04960000000028231
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
91.47099999999955
PauseStartRelativeMSec
7862.7356
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11807624
TotalPromoted960
Depth0
GenerationSize02895160
TotalPromotedSize0960
GenerationSize1899888
TotalPromotedSize10
GenerationSize26335736
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41568560
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount18
GCHandleCount1391
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
15.039863999999998
RatioPeakAfter
1.9465511435662246
AllocRateMBSec
164.42221031802507
HeapSizePeakMB
22.984144
UserAllocated
[ 15.039863999999998, 0, 0, 0, 0 ]
HeapSizeBeforeMB
22.984144
GenSizeBeforeMB
[ 15.64108, 0.899048, 6.335736000000001, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.3710003504324781
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.80896
PromotedMB
0.001456
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7955.8079
DurationMSec
1.186800000000403
PauseDurationMSec
1.3872000000001208
SuspendDurationMSec
0.08300000000053842
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
91.66169999999966
PauseStartRelativeMSec
7955.6392
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11808960
TotalPromoted1456
Depth0
GenerationSize02895160
TotalPromotedSize01456
GenerationSize1901224
TotalPromotedSize10
GenerationSize26335736
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41568560
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount18
GCHandleCount1391
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration0
Gen0ReductionCount11
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
15.210744
RatioPeakAfter
1.9600919979405467
AllocRateMBSec
165.94438025914923
HeapSizePeakMB
23.146648
UserAllocated
[ 15.210744, 0, 0, 0, 0 ]
HeapSizeBeforeMB
23.146648
GenSizeBeforeMB
[ 15.802743999999999, 0.8998879999999999, 6.335736000000001, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.4908290157112272
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.81108
PromotedMB
0.002216
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
8048.3751
DurationMSec
1.2199000000000524
PauseDurationMSec
1.4203999999999724
SuspendDurationMSec
0.062099999999190914
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
91.21140000000014
PauseStartRelativeMSec
8048.2075
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11811080
TotalPromoted2216
Depth0
GenerationSize02895160
TotalPromotedSize02216
GenerationSize1903344
TotalPromotedSize10
GenerationSize26335736
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41568560
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount18
GCHandleCount1391
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
15.188544
RatioPeakAfter
1.9533292467750623
AllocRateMBSec
166.52023760187845
HeapSizePeakMB
23.070928000000002
UserAllocated
[ 15.188544, 0, 0, 0, 0 ]
HeapSizeBeforeMB
23.070928000000002
GenSizeBeforeMB
[ 15.725688, 0.9012239999999999, 6.335736000000001, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.5333827044276054
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
12.45724
PromotedMB
0.02104
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
8137.1372
DurationMSec
1.3252000000002226
PauseDurationMSec
1.5416999999997643
SuspendDurationMSec
0.09040000000004511
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
87.35910000000058
PauseStartRelativeMSec
8136.9556
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize12457240
TotalPromoted21040
Depth0
GenerationSize03512368
TotalPromotedSize021040
GenerationSize1924056
TotalPromotedSize10
GenerationSize26335736
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41576800
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount19
GCHandleCount1397
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
14.779896
RatioPeakAfter
1.8199742479072412
AllocRateMBSec
169.1855341916286
HeapSizePeakMB
22.671856000000002
UserAllocated
[ 14.779896, 0, 0, 0, 0 ]
HeapSizeBeforeMB
22.671856000000002
GenSizeBeforeMB
[ 15.324496, 0.9033439999999999, 6.335736000000001, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.7341801198636664
(351 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.4518180592994412
MeanSizeAfterMB
12.689484420485167
MeanSizePeakMB
20.465859428571427
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
371
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
6.928200000000288
TotalPauseTimeMSec
538.6245000000927
MaxSuspendDurationMSec
0.2845999999999549
MaxSizePeakMB
25.085120000000003
MaxAllocRateMBSec
229.26781247802336
TotalAllocatedMB
3811.1489679999972
TotalCpuMSec
0
TotalPromotedMB
51.75443199999995
TotalSizeAfterMB
4707.798719999997
TotalSizePeakMB
7592.833847999999
FinalizedObjects(empty)
ProcessDuration
30310.397399999994
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.4068088642661754
MeanSizeAfterMB
12.670513307479219
MeanSizePeakMB
20.447706216066482
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
361
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
5.4780000000000655
TotalPauseTimeMSec
507.8580000000893
MaxSuspendDurationMSec
0.1754000000000815
MaxSizePeakMB
25.085120000000003
MaxAllocRateMBSec
229.26781247802336
TotalAllocatedMB
3740.1671919999976
TotalCpuMSec
0
TotalPromotedMB
8.105384000000006
TotalSizeAfterMB
4574.055303999998
TotalSizePeakMB
7381.6219439999995
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
3.7363285714288526
MeanSizeAfterMB
12.215364571428571
MeanSizePeakMB
19.67901714285714
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
7
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
6.928200000000288
TotalPauseTimeMSec
26.154300000001967
MaxSuspendDurationMSec
0.12879999999950087
MaxSizePeakMB
24.713264
MaxAllocRateMBSec
188.0896072781065
TotalAllocatedMB
70.98177600000001
TotalCpuMSec
0
TotalPromotedMB
15.479432
TotalSizeAfterMB
85.507552
TotalSizePeakMB
137.75312
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.5374000000004646
MeanSizeAfterMB
16.078621333333334
MeanSizePeakMB
24.486261333333335
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
3
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
1.6694000000006781
TotalPauseTimeMSec
4.612200000001394
MaxSuspendDurationMSec
0.2845999999999549
MaxSizePeakMB
25.085120000000003
MaxAllocRateMBSec
0
TotalAllocatedMB
0
TotalCpuMSec
0
TotalPromotedMB
28.169615999999998
TotalSizeAfterMB
48.235864
TotalSizePeakMB
73.45878400000001
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking(empty)
BGCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
18.935488
PromotedMB
7.374544
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
5
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
6940.4491
DurationMSec
58.58420000000024
PauseDurationMSec
1.6694000000006781
SuspendDurationMSec
0.12190000000009604
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
56.22240000000056
PauseStartRelativeMSec
6940.3205
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.6201000000000931
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize18935488
TotalPromoted7374544
Depth2
GenerationSize07249296
TotalPromotedSize03784
GenerationSize16094592
TotalPromotedSize13282584
GenerationSize23993040
TotalPromotedSize23979928
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize41490280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount5
PinnedObjectCount0
SinkBlockCount4
GCHandleCount1235
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.324767547580501
AllocRateMBSec
0
HeapSizePeakMB
25.085120000000003
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.664656
GenSizeBeforeMB
[ 4.468744, 6.094592, 3.99304, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.252353861761318
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
13.69552
PromotedMB
8.644408
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
8
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7151.4115
DurationMSec
19.098500000000058
PauseDurationMSec
1.6154999999998836
SuspendDurationMSec
0.2845999999999549
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
17.735099999999875
PauseStartRelativeMSec
7151.2357
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.518699999999626
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13695520
TotalPromoted8644408
Depth2
GenerationSize02483648
TotalPromotedSize01752
GenerationSize13375440
TotalPromotedSize12344024
GenerationSize26200792
TotalPromotedSize26190384
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize41527360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount4
PinnedObjectCount0
SinkBlockCount7
GCHandleCount1235
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.8290991506711682
AllocRateMBSec
0
HeapSizePeakMB
25.050463999999998
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
9.684032
GenSizeBeforeMB
[ 0.000136, 3.374824, 6.200792, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.7030416241542743
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
15.604856
PromotedMB
12.150664
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
187
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
22185.4731
DurationMSec
11.064300000001822
PauseDurationMSec
1.3273000000008324
SuspendDurationMSec
0.2511000000013155
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
9.751400000001013
PauseStartRelativeMSec
22185.3236
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.2021000000022468
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize15604856
TotalPromoted12150664
Depth2
GenerationSize0831208
TotalPromotedSize01688
GenerationSize11704896
TotalPromotedSize14678184
GenerationSize211379552
TotalPromotedSize27362544
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize41580920
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount4
PinnedObjectCount0
SinkBlockCount19
GCHandleCount1406
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.4946116772881468
AllocRateMBSec
0
HeapSizePeakMB
23.3232
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.276152
GenSizeBeforeMB
[ 1.0846, 1.703568, 11.379704, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.1211991052195187
GCThreadIDsToHeapNumbers(empty)
DurationMSec
38987.3914
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="19241"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpsIISOutOfProc_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 2:13:04 PM"\\r\\n SessionEndTime="8/21/2023 2:13:47 PM"\\r\\n SessionDuration="...
Events
[ <Event MSec= "0.0000" PID="2780" PName="PerfView" TID="3576" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 2:13:44 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="89" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 2:13:04 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="2780" PName="PerfView" TID="3576" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "4.8842" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="2780" PName="PerfView" TID="3576" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "4.8539" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "4.8842" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "4.9030" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "4.9030" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", + "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337152584110.2
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="2780" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="156.3494" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmpBE05.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", + "
Count109
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="3576" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337152584110.2" /> ... (more) ]
Count1552
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", + "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="102" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1302" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="220" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="28" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="5" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", + " ... (more) ]
Count78
(values)
indexvalue
0\r\n", + "
1\r\n", + "
2\r\n", + "
3\r\n", + "
4\r\n", + "
5\r\n", + "
6\r\n", + "
7\r\n", + "
8\r\n", + "
9\r\n", + "
10\r\n", + "
11\r\n", + "
12\r\n", + "
13\r\n", + "
14\r\n", + "
15\r\n", + "
16\r\n", + "
17\r\n", + "
18\r\n", + "
19\r\n", + "
... (more)
MaxEventIndex19241
EventCount
19241
Size
4549760
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpsIISOutOfProc_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", + "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", + "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", + "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", + "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", + " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", + " at lambda_method760(Closure, TraceLog)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 14:13:04Z
SessionEndTime2023-08-21 14:13:47Z
SessionEndTimeRelativeMSec
42942.3673
SessionDuration00:00:42.9423673
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [100, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [98, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [102, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [103, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpsIISOutOfProc_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
1GC.Analysis.API.GCProcessData
Benchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\adkpe31d.ocy\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios json --urls https://10.0.0.104:5000 --server IISOutOfProcess --kestrelTransport Sockets --protocol https 
NumberOfHeapCountSwitches
8
Benchmark
JsonHttpsIISOutOfProc
Id
datas_3 | JsonHttpsIISOutOfProc
TotalSuspensionTimeMSec
29.337400000067646
PercentPauseTimeInGC
1.7770288290581526
PercentTimeInGC
1.6802389400543627
MeanHeapSizeBeforeMB
20.465859428571427
MaxHeapSizeMB
25.085120000000003
TotalAllocationsMB
3811.1489679999972
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpsIISOutOfProc_Windows.gc.etl.zip
ProcessName
Benchmarks
datas_3 | JsonHttpSys
Submission#4+LoadInfo
WorkingSetMB
109
PrivateMemoryMB
82
Latency50thMS
0.4
Latency75thMS
0.58
Latency90thMS
0.9
Latency99thMS
7.32
MeanLatencyMS
0.66
ProcessId
11916
RequestsPerMSec
527.835
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
Benchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\t3p51z5f.her\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios json --urls http://10.0.0.104:5000 --server HttpSys --kestrelTransport Sockets --protocol http 
ProcessID
11916
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.619488
PromotedMB
1.220896
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
36555.3799
DurationMSec
5.311500000003434
PauseDurationMSec
5.723600000004808
SuspendDurationMSec
0.12250000000494765
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
36555.02
PauseStartRelativeMSec
36555.02
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4619488
TotalPromoted1220896
Depth0
GenerationSize02598448
TotalPromotedSize01220896
GenerationSize11201160
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize36082
FinalizationPromotedCount104
PinnedObjectCount7
SinkBlockCount3
GCHandleCount598
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
0.5909711206090372
AllocRateMBSec
0
HeapSizePeakMB
2.729984
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.729984
GenSizeBeforeMB
[ 2.621704, 0, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
0.015655042639791405
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
5.236064
PromotedMB
1.583224
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
36564.3907
DurationMSec
4.268799999998009
PauseDurationMSec
4.520100000001548
SuspendDurationMSec
0.19429999999556458
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
3.4769999999989523
PauseStartRelativeMSec
36564.1693
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5236064
TotalPromoted1583224
Depth1
GenerationSize00
TotalPromotedSize0720352
GenerationSize13569720
TotalPromotedSize1862872
GenerationSize2846464
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize1256
FinalizationPromotedCount21
PinnedObjectCount13
SinkBlockCount5
GCHandleCount691
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.387552
RatioPeakAfter
0.7594529020271716
AllocRateMBSec
686.670117917952
HeapSizePeakMB
3.976544
UserAllocated
[ 2.387552, 0, 0, 0, 0 ]
HeapSizeBeforeMB
3.976544
GenSizeBeforeMB
[ 2.667104, 1.20116, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
56.521739130450605
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2N
HeapSizeAfterMB
5.865928
PromotedMB
1.759312
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
36571.7811
DurationMSec
4.383300000001327
PauseDurationMSec
4.501199999998789
SuspendDurationMSec
0.07459999999991851
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
3.0232000000032713
PauseStartRelativeMSec
36571.684
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5865928
TotalPromoted1759312
Depth2
GenerationSize02621000
TotalPromotedSize0470360
GenerationSize1466984
TotalPromotedSize1334504
GenerationSize21958064
TotalPromotedSize2846200
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize608
FinalizationPromotedCount4
PinnedObjectCount37
SinkBlockCount7
GCHandleCount650
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration2
Gen0ReductionCount126524
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.458384
RatioPeakAfter
1.218273391695227
AllocRateMBSec
813.172797035373
HeapSizePeakMB
7.146304
UserAllocated
[ 2.458384, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.146304
GenSizeBeforeMB
[ 2.62184, 3.56972, 0.846464, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
59.821381106766744
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
10.81936
PromotedMB
0.495512
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
36617.2821
DurationMSec
1.5500000000029104
PauseDurationMSec
1.930500000002212
SuspendDurationMSec
0.15989999999874271
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
40.772100000001956
PauseStartRelativeMSec
36616.9375
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10819360
TotalPromoted495512
Depth1
GenerationSize07595112
TotalPromotedSize0443072
GenerationSize1446304
TotalPromotedSize152440
GenerationSize21958064
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount7
GCHandleCount794
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration1
Gen0ReductionCount269539
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated52440
FreeListConsumed52440
AllocedSinceLastGCMB
38.644016
RatioPeakAfter
3.87023483828988
AllocRateMBSec
947.8053865265255
HeapSizePeakMB
41.873464
UserAllocated
[ 38.643984, 0, 0, 3.200000000000425E-05, 0 ]
HeapSizeBeforeMB
41.873464
GenSizeBeforeMB
[ 39.340136, 0.466984, 1.958064, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
4.52080201206021
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
24.244256
PromotedMB
0.44728
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
5
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
36659.1812
DurationMSec
0.936600000000908
PauseDurationMSec
1.2444000000032247
SuspendDurationMSec
0.10859999999956926
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
40.068299999999
PauseStartRelativeMSec
36658.9018
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize24244256
TotalPromoted447280
Depth0
GenerationSize020573312
TotalPromotedSize0447280
GenerationSize1893000
TotalPromotedSize10
GenerationSize21958064
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount17
SinkBlockCount7
GCHandleCount920
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration0
Gen0ReductionCount1036
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
40.53717600000001
RatioPeakAfter
1.8094113508783274
AllocRateMBSec
1011.7019189733785
HeapSizePeakMB
43.86783199999999
UserAllocated
[ 40.53717600000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
43.86783199999999
GenSizeBeforeMB
[ 41.355183999999994, 0.446304, 1.958064, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.012148806548973
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
21.706896
PromotedMB
0.441176
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
36698.1166
DurationMSec
0.9703999999983353
PauseDurationMSec
1.2541000000055647
SuspendDurationMSec
0.06030000000464497
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
37.742499999993015
PauseStartRelativeMSec
36697.8616
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize21706896
TotalPromoted441176
Depth0
GenerationSize017594368
TotalPromotedSize0441176
GenerationSize11334584
TotalPromotedSize10
GenerationSize21958064
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount15
SinkBlockCount7
GCHandleCount988
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration0
Gen0ReductionCount22
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
39.475632000000004
RatioPeakAfter
2.0217505073042226
AllocRateMBSec
1045.919904617005
HeapSizePeakMB
43.885928
UserAllocated
[ 39.475632000000004, 0, 0, 0, 0 ]
HeapSizeBeforeMB
43.885928
GenSizeBeforeMB
[ 40.926584, 0.8929999999999998, 1.958064, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.2159213880328292
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
14.534888
PromotedMB
0.429008
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
36737.1999
DurationMSec
0.8856999999989057
PauseDurationMSec
1.1908000000039465
SuspendDurationMSec
0.07749999999941792
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
37.83679999999731
PauseStartRelativeMSec
36736.9249
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize14534888
TotalPromoted429008
Depth0
GenerationSize09990824
TotalPromotedSize0429008
GenerationSize11766120
TotalPromotedSize10
GenerationSize21958064
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount8
SinkBlockCount7
GCHandleCount1001
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration0
Gen0ReductionCount24
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
38.851392
RatioPeakAfter
3.0081910503885547
AllocRateMBSec
1026.814952638774
HeapSizePeakMB
43.72372
UserAllocated
[ 38.851392, 0, 0, 0, 0 ]
HeapSizeBeforeMB
43.72372
GenSizeBeforeMB
[ 40.322792, 1.334584, 1.958064, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.051174040945147
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
17.703136
PromotedMB
0.45192
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
36777.201
DurationMSec
0.9347999999954482
PauseDurationMSec
1.2220999999990454
SuspendDurationMSec
0.07389999999577412
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
38.851300000002084
PauseStartRelativeMSec
36776.9383
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize17703136
TotalPromoted451920
Depth0
GenerationSize012706920
TotalPromotedSize0451920
GenerationSize12218272
TotalPromotedSize10
GenerationSize21958064
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount13
SinkBlockCount7
GCHandleCount1139
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration0
Gen0ReductionCount22
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
39.699832
RatioPeakAfter
2.510156844527433
AllocRateMBSec
1021.8405046934819
HeapSizePeakMB
44.437648
UserAllocated
[ 39.699832, 0, 0, 0, 0 ]
HeapSizeBeforeMB
44.437648
GenSizeBeforeMB
[ 40.605184, 1.76612, 1.958064, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.0496538851183352
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
15.452768
PromotedMB
0.43216
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
36817.3216
DurationMSec
0.962599999998929
PauseDurationMSec
1.3444999999992433
SuspendDurationMSec
0.15610000000015134
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
38.827500000006694
PauseStartRelativeMSec
36816.9653
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize15452768
TotalPromoted432160
Depth0
GenerationSize010022152
TotalPromotedSize0432160
GenerationSize12652672
TotalPromotedSize10
GenerationSize21958064
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount8
SinkBlockCount7
GCHandleCount982
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration0
Gen0ReductionCount22
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
39.859736
RatioPeakAfter
2.915886137680964
AllocRateMBSec
1026.5851780308576
HeapSizePeakMB
45.05851199999999
UserAllocated
[ 39.859736, 0, 0, 0, 0 ]
HeapSizeBeforeMB
45.05851199999999
GenSizeBeforeMB
[ 40.77389599999999, 2.218272, 1.958064, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.3468585084114424
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
20.886752
PromotedMB
0.452376
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
36854.7744
DurationMSec
0.9675999999963096
PauseDurationMSec
1.34150000000227
SuspendDurationMSec
0.17340000000695
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
36.13869999999588
PauseStartRelativeMSec
36854.4241
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize20886752
TotalPromoted452376
Depth0
GenerationSize015001008
TotalPromotedSize0452376
GenerationSize13107800
TotalPromotedSize10
GenerationSize21958064
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount10
SinkBlockCount7
GCHandleCount1041
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration0
Gen0ReductionCount23
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
39.66256
RatioPeakAfter
2.170065312213215
AllocRateMBSec
1097.5093182655858
HeapSizePeakMB
45.325616
UserAllocated
[ 39.66256, 0, 0, 0, 0 ]
HeapSizeBeforeMB
45.325616
GenSizeBeforeMB
[ 40.60659999999999, 2.6526720000000004, 1.958064, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.579223163169717
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
8.7726
PromotedMB
0.40884
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
36890.8229
DurationMSec
0.8749000000025262
PauseDurationMSec
1.1156999999948312
SuspendDurationMSec
0.015099999996891711
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.85960000000341
PauseStartRelativeMSec
36890.603
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8772600
TotalPromoted408840
Depth0
GenerationSize02474312
TotalPromotedSize0408840
GenerationSize13520344
TotalPromotedSize10
GenerationSize21958064
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount7
GCHandleCount1008
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration0
Gen0ReductionCount25
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
39.59665599999999
RatioPeakAfter
5.198041173654332
AllocRateMBSec
1135.889568440146
HeapSizePeakMB
45.60033599999999
UserAllocated
[ 39.59665599999999, 0, 0, 0, 0 ]
HeapSizeBeforeMB
45.60033599999999
GenSizeBeforeMB
[ 40.42619199999999, 3.1078, 1.958064, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.1012944992672353
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
10.2806
PromotedMB
0.441672
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
36926.2178
DurationMSec
0.8784000000014203
PauseDurationMSec
1.1609000000025844
SuspendDurationMSec
0.04340000000229338
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.25959999999759
PauseStartRelativeMSec
36925.9588
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10280600
TotalPromoted441672
Depth1
GenerationSize07058832
TotalPromotedSize0403424
GenerationSize1405576
TotalPromotedSize138248
GenerationSize21996312
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount7
SinkBlockCount7
GCHandleCount997
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration1
Gen0ReductionCount23
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
38.770488
RatioPeakAfter
4.40650545687995
AllocRateMBSec
1131.6678536819672
HeapSizePeakMB
45.30152000000001
UserAllocated
[ 38.770488, 0, 0, 0, 0 ]
HeapSizeBeforeMB
45.30152000000001
GenSizeBeforeMB
[ 39.71483200000001, 3.520344, 1.958064, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.277480555053087
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
21.291408
PromotedMB
0.432672
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
36962.9056
DurationMSec
0.8798000000024331
PauseDurationMSec
1.2597999999998137
SuspendDurationMSec
0.16040000000066357
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
35.45589999999356
PauseStartRelativeMSec
36962.5534
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize21291408
TotalPromoted432672
Depth0
GenerationSize017636864
TotalPromotedSize0432672
GenerationSize1838352
TotalPromotedSize10
GenerationSize21996312
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount14
SinkBlockCount7
GCHandleCount998
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration0
Gen0ReductionCount24
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
39.679008
RatioPeakAfter
2.0210856886496193
AllocRateMBSec
1119.1087519991654
HeapSizePeakMB
43.03176000000001
UserAllocated
[ 39.679008, 0, 0, 0, 0 ]
HeapSizeBeforeMB
43.03176000000001
GenSizeBeforeMB
[ 40.521592000000005, 0.405576, 1.996312, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.431229691930267
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
24.601048
PromotedMB
0.460512
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
36999.924
DurationMSec
0.8930000000036671
PauseDurationMSec
1.387300000002142
SuspendDurationMSec
0.2895000000062282
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
35.67020000000048
PauseStartRelativeMSec
36999.4569
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize24601048
TotalPromoted460512
Depth0
GenerationSize020487800
TotalPromotedSize0460512
GenerationSize11297056
TotalPromotedSize10
GenerationSize21996312
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount19
SinkBlockCount7
GCHandleCount889
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration0
Gen0ReductionCount23
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
40.019328
RatioPeakAfter
1.7871424014131434
AllocRateMBSec
1121.926089564944
HeapSizePeakMB
43.965576000000006
UserAllocated
[ 40.019328, 0, 0, 0, 0 ]
HeapSizeBeforeMB
43.965576000000006
GenSizeBeforeMB
[ 41.022632, 0.8383519999999999, 1.996312, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.7436416380005233
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
16.335544
PromotedMB
0.443512
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
37035.8787
DurationMSec
0.834499999997206
PauseDurationMSec
1.2279000000053202
SuspendDurationMSec
0.17850000000180444
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.69239999999991
PauseStartRelativeMSec
37035.5108
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize16335544
TotalPromoted443512
Depth0
GenerationSize011777944
TotalPromotedSize0443512
GenerationSize11741408
TotalPromotedSize10
GenerationSize21996312
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount11
SinkBlockCount7
GCHandleCount819
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration0
Gen0ReductionCount23
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
38.471743999999994
RatioPeakAfter
2.652061786249665
AllocRateMBSec
1108.938672446994
HeapSizePeakMB
43.322872
UserAllocated
[ 38.471743999999994, 0, 0, 0, 0 ]
HeapSizeBeforeMB
43.322872
GenSizeBeforeMB
[ 39.921223999999995, 1.297056, 1.996312, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.4184012939901436
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
21.933632
PromotedMB
0.422536
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
37071.9699
DurationMSec
0.8519000000014785
PauseDurationMSec
1.2160000000003492
SuspendDurationMSec
0.13959999999497086
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.9178000000029
PauseStartRelativeMSec
37071.6324
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize21933632
TotalPromoted422536
Depth0
GenerationSize016954288
TotalPromotedSize0422536
GenerationSize12163152
TotalPromotedSize10
GenerationSize21996312
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount16
SinkBlockCount7
GCHandleCount661
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration0
Gen0ReductionCount22
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
38.79732799999999
RatioPeakAfter
1.9808819624583838
AllocRateMBSec
1111.104594218329
HeapSizePeakMB
43.447936000000006
UserAllocated
[ 38.79732799999999, 0, 0, 0, 0 ]
HeapSizeBeforeMB
43.447936000000006
GenSizeBeforeMB
[ 39.601936, 1.7414079999999998, 1.996312, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.3652701902380593
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
20.108728
PromotedMB
0.446456
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
37107.6058
DurationMSec
0.9055000000007567
PauseDurationMSec
1.4426000000021304
SuspendDurationMSec
0.30939999999827705
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.273300000000745
PauseStartRelativeMSec
37107.0965
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize20108728
TotalPromoted446456
Depth0
GenerationSize014682536
TotalPromotedSize0446456
GenerationSize12610000
TotalPromotedSize10
GenerationSize21996312
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount14
SinkBlockCount7
GCHandleCount449
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration0
Gen0ReductionCount23
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
38.600584
RatioPeakAfter
2.1811352761845506
AllocRateMBSec
1126.258165977573
HeapSizePeakMB
43.859856
UserAllocated
[ 38.600584, 0, 0, 0, 0 ]
HeapSizeBeforeMB
43.859856
GenSizeBeforeMB
[ 39.592112, 2.163152, 1.996312, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
4.039097432801677
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
20.892456
PromotedMB
0.4452
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
37143.8429
DurationMSec
0.9160999999949127
PauseDurationMSec
1.360899999999674
SuspendDurationMSec
0.2157999999981257
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.91339999999764
PauseStartRelativeMSec
37143.426
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize20892456
TotalPromoted445200
Depth0
GenerationSize015020192
TotalPromotedSize0445200
GenerationSize13056072
TotalPromotedSize10
GenerationSize21996312
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount13
SinkBlockCount7
GCHandleCount324
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration0
Gen0ReductionCount24
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
39.192448000000006
RatioPeakAfter
2.1508529203076936
AllocRateMBSec
1122.561767115281
HeapSizePeakMB
44.93659999999999
UserAllocated
[ 39.192448000000006, 0, 0, 0, 0 ]
HeapSizeBeforeMB
44.93659999999999
GenSizeBeforeMB
[ 40.22200799999999, 2.6099999999999994, 1.996312, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.751691969244823
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
18.879936
PromotedMB
0.444944
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
37181.4355
DurationMSec
0.9386000000013155
PauseDurationMSec
1.2783999999955995
SuspendDurationMSec
0.11959999999817228
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
36.36540000000241
PauseStartRelativeMSec
37181.1258
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize18879936
TotalPromoted444944
Depth0
GenerationSize012563296
TotalPromotedSize0444944
GenerationSize13500448
TotalPromotedSize10
GenerationSize21996312
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount15
SinkBlockCount7
GCHandleCount497
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration0
Gen0ReductionCount24
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
39.54784800000001
RatioPeakAfter
2.4092958789690817
AllocRateMBSec
1087.5130756157607
HeapSizePeakMB
45.48735200000001
UserAllocated
[ 39.54784800000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
45.48735200000001
GenSizeBeforeMB
[ 40.326688000000004, 3.0560720000000003, 1.996312, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.396043970044648
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
8.124
PromotedMB
0.386416
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
37220.2463
DurationMSec
0.8271000000022468
PauseDurationMSec
1.6278999999994994
SuspendDurationMSec
0.613100000002305
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
37.07800000000134
PauseStartRelativeMSec
37219.4537
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8124000
TotalPromoted386416
Depth1
GenerationSize04918008
TotalPromotedSize0386384
GenerationSize1389768
TotalPromotedSize132
GenerationSize21996344
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount7
GCHandleCount218
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration1
Gen0ReductionCount24
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
39.38440800000001
RatioPeakAfter
5.638238306253077
AllocRateMBSec
1062.204218134705
HeapSizePeakMB
45.805048000000006
UserAllocated
[ 39.38440800000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
45.805048000000006
GenSizeBeforeMB
[ 40.200008000000004, 3.500447999999999, 1.996312, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
4.205818751145082
(1608 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.5192918304667302
MeanSizeAfterMB
16.38210687469287
MeanSizePeakMB
42.857306176904196
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1628
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
16.863100000002305
TotalPauseTimeMSec
2473.4070999998366
MaxSuspendDurationMSec
15.347799999995914
MaxSizePeakMB
47.22876
MaxAllocRateMBSec
2546.688998420913
TotalAllocatedMB
61372.53923200008
TotalCpuMSec
0
TotalPromotedMB
725.2270959999996
TotalSizeAfterMB
26670.069991999993
TotalSizePeakMB
69771.69445600003
FinalizedObjects(empty)
ProcessDuration
30306.2652
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.5377793785309823
MeanSizeAfterMB
16.675004564971733
MeanSizePeakMB
42.68486480790962
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1416
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
16.499799999997776
TotalPauseTimeMSec
2177.495599999871
MaxSuspendDurationMSec
15.347799999995914
MaxSizePeakMB
46.248344
MaxAllocRateMBSec
2546.688998420913
TotalAllocatedMB
53460.43462400003
TotalCpuMSec
0
TotalPromotedMB
658.756648
TotalSizeAfterMB
23611.806463999976
TotalSizePeakMB
60441.76856800002
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.3810914691941556
MeanSizeAfterMB
14.466339336492902
MeanSizePeakMB
44.18378949763032
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
211
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
16.863100000002305
TotalPauseTimeMSec
291.4102999999668
MaxSuspendDurationMSec
15.325900000003458
MaxSizePeakMB
47.22876
MaxAllocRateMBSec
2528.096064394047
TotalAllocatedMB
7909.646223999999
TotalCpuMSec
0
TotalPromotedMB
64.71113600000001
TotalSizeAfterMB
3052.3976000000025
TotalSizePeakMB
9322.779583999998
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
4.501199999998789
MeanSizeAfterMB
5.865928
MeanSizePeakMB
7.146304
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
4.501199999998789
TotalPauseTimeMSec
4.501199999998789
MaxSuspendDurationMSec
0.07459999999991851
MaxSizePeakMB
7.146304
MaxAllocRateMBSec
813.172797035373
TotalAllocatedMB
2.458384
TotalCpuMSec
0
TotalPromotedMB
1.759312
TotalSizeAfterMB
5.865928
TotalSizePeakMB
7.146304
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2N
HeapSizeAfterMB
5.865928
PromotedMB
1.759312
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
36571.7811
DurationMSec
4.383300000001327
PauseDurationMSec
4.501199999998789
SuspendDurationMSec
0.07459999999991851
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
3.0232000000032713
PauseStartRelativeMSec
36571.684
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5865928
TotalPromoted1759312
Depth2
GenerationSize02621000
TotalPromotedSize0470360
GenerationSize1466984
TotalPromotedSize1334504
GenerationSize21958064
TotalPromotedSize2846200
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize608
FinalizationPromotedCount4
PinnedObjectCount37
SinkBlockCount7
GCHandleCount650
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration2
Gen0ReductionCount126524
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.458384
RatioPeakAfter
1.218273391695227
AllocRateMBSec
813.172797035373
HeapSizePeakMB
7.146304
UserAllocated
[ 2.458384, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.146304
GenSizeBeforeMB
[ 2.62184, 3.56972, 0.846464, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
59.821381106766744
BGCs(empty)
GCThreadIDsToHeapNumbers(empty)
DurationMSec
70144.4628
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="230504"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpSys_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 3:37:44 PM"\\r\\n SessionEndTime="8/21/2023 3:38:59 PM"\\r\\n SessionDuration="00:01:15....
Events
[ <Event MSec= "0.0000" PID="7936" PName="PerfView" TID="7348" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 3:38:56 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="597" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 3:37:44 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="7936" PName="PerfView" TID="7348" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "4.8035" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="7936" PName="PerfView" TID="7348" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "4.7722" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "4.8035" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "4.8245" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "4.8245" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", + "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337147504322
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="7936" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="156.566" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmp4156.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", + "
Count123
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="7348" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337147504322" /> ... (more) ]
Count1644
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", + "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="119" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1421" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="193" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="27" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="13" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", + " ... (more) ]
Count77
(values)
indexvalue
0\r\n", + "
1\r\n", + "
2\r\n", + "
3\r\n", + "
4\r\n", + "
5\r\n", + "
6\r\n", + "
7\r\n", + "
8\r\n", + "
9\r\n", + "
10\r\n", + "
11\r\n", + "
12\r\n", + "
13\r\n", + "
14\r\n", + "
15\r\n", + "
16\r\n", + "
17\r\n", + "
18\r\n", + "
19\r\n", + "
... (more)
MaxEventIndex230504
EventCount
230504
Size
42371207
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpSys_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", + "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", + "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", + "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", + "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", + " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", + " at lambda_method760(Closure, TraceLog)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 15:37:44Z
SessionEndTime2023-08-21 15:38:59Z
SessionEndTimeRelativeMSec
75125.1118
SessionDuration00:01:15.1251118
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [117, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [112, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [105, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [110, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [104, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [103, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [102, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [100, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [98, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [114, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [119, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [120, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpSys_Windows.gc.etl.zip
AllGCProcessData
keyvalue
crank-agent
indexvalue
0GC.Analysis.API.GCProcessData
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
1GC.Analysis.API.GCProcessData
Benchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\t3p51z5f.her\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios json --urls http://10.0.0.104:5000 --server HttpSys --kestrelTransport Sockets --protocol http 
NumberOfHeapCountSwitches
1
Benchmark
JsonHttpSys
Id
datas_3 | JsonHttpSys
TotalSuspensionTimeMSec
752.785000000018
PercentPauseTimeInGC
8.161372190459934
PercentTimeInGC
5.677446853463879
MeanHeapSizeBeforeMB
42.857306176904196
MaxHeapSizeMB
47.22876
TotalAllocationsMB
61372.53923200008
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpSys_Windows.gc.etl.zip
ProcessName
Benchmarks
datas_3 | JsonHttps
Submission#4+LoadInfo
WorkingSetMB
115
PrivateMemoryMB
81
Latency50thMS
0.34
Latency75thMS
0.39
Latency90thMS
0.63
Latency99thMS
15.35
MeanLatencyMS
0.78
ProcessId
7228
RequestsPerMSec
655.672
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
Benchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\3jf0gver.1ny\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios json --urls https://10.0.0.104:5000 --server Kestrel --kestrelTransport Sockets --protocol https 
ProcessID
7228
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.020048
PromotedMB
1.200048
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
31871.4363
DurationMSec
7.643199999998615
PauseDurationMSec
8.01879999999801
SuspendDurationMSec
0.008699999998498242
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
31871.1329
PauseStartRelativeMSec
31871.1329
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4020048
TotalPromoted1200048
Depth0
GenerationSize00
TotalPromotedSize01200048
GenerationSize13711048
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize30274
FinalizationPromotedCount26
PinnedObjectCount47
SinkBlockCount4
GCHandleCount583
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
0.6811480857940004
AllocRateMBSec
0
HeapSizePeakMB
2.738248
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.738248
GenSizeBeforeMB
[ 2.629968, 0, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
0.025153743347562194
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
8.9504
PromotedMB
3.069584
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
31914.0443
DurationMSec
9.496399999999994
PauseDurationMSec
9.561200000000099
SuspendDurationMSec
0.0067000000017287675
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.92949999999837
PauseStartRelativeMSec
31914.0104
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8950400
TotalPromoted3069584
Depth1
GenerationSize02494664
TotalPromotedSize01908984
GenerationSize14351880
TotalPromotedSize11160600
GenerationSize21127416
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4868160
TotalPromotedSize40
FinalizationPromotedSize568
FinalizationPromotedCount19
PinnedObjectCount80
SinkBlockCount5
GCHandleCount1073
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.140936
RatioPeakAfter
0.7196496245977833
AllocRateMBSec
61.29306173864785
HeapSizePeakMB
6.441152
UserAllocated
[ 2.140936, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.441152
GenSizeBeforeMB
[ 2.621824, 3.711048, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
21.490333934958155
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
9.259216
PromotedMB
2.025296
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
31964.0151
DurationMSec
4.8060999999979686
PauseDurationMSec
4.858099999997648
SuspendDurationMSec
0.008899999997083796
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
40.44590000000244
PauseStartRelativeMSec
31963.9877
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9259216
TotalPromoted2025296
Depth0
GenerationSize00
TotalPromotedSize02025296
GenerationSize17027640
TotalPromotedSize10
GenerationSize21127416
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4995880
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount72
SinkBlockCount5
GCHandleCount1125
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount2000211
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.106448
RatioPeakAfter
0.8924444575005055
AllocRateMBSec
52.080631164095074
HeapSizePeakMB
8.263336
UserAllocated
[ 2.106448, 0, 0, 0, 0 ]
HeapSizeBeforeMB
8.263336
GenSizeBeforeMB
[ 2.67576, 4.35188, 1.127416, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
10.723335687792776
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
15.21764
PromotedMB
6.050264
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
32044.571
DurationMSec
6.872800000001007
PauseDurationMSec
7.032200000001467
SuspendDurationMSec
0.05410000000119908
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
75.63780000000042
PauseStartRelativeMSec
32044.46
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize15217640
TotalPromoted6050264
Depth1
GenerationSize02546008
TotalPromotedSize02587488
GenerationSize16793488
TotalPromotedSize13462776
GenerationSize24390824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41379040
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount46
SinkBlockCount5
GCHandleCount1221
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration1
Gen0ReductionCount107
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.1988959999999995
RatioPeakAfter
1.0329065479272739
AllocRateMBSec
95.17590411143581
HeapSizePeakMB
15.7184
UserAllocated
[ 7.1988639999999995, 0, 0, 3.200000000000425E-05, 0 ]
HeapSizeBeforeMB
15.7184
GenSizeBeforeMB
[ 7.455064, 7.02764, 1.127416, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
8.506350550382614
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
12.866824
PromotedMB
0.0366
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
5
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
32106.4716
DurationMSec
1.8873999999996158
PauseDurationMSec
2.0109000000011292
SuspendDurationMSec
0.05189999999856809
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
54.93340000000171
PauseStartRelativeMSec
32106.3783
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize12866824
TotalPromoted36600
Depth0
GenerationSize0137512
TotalPromotedSize036600
GenerationSize16793488
TotalPromotedSize10
GenerationSize24390824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41436720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount5
GCHandleCount1221
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount1082
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.68224
RatioPeakAfter
1.4890002381318033
AllocRateMBSec
139.84643222519924
HeapSizePeakMB
19.158704
UserAllocated
[ 7.68224, 0, 0, 0, 0 ]
HeapSizeBeforeMB
19.158704
GenSizeBeforeMB
[ 7.866111999999999, 6.793488, 4.390824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.5313455429270864
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
13.648688
PromotedMB
7.999472
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
6
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
32154.8396
DurationMSec
10.966599999999744
PauseDurationMSec
1.5089000000043598
SuspendDurationMSec
0.15930000000298605
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
8.21190000000206
PauseStartRelativeMSec
32154.7444
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.442300000002433
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13648688
TotalPromoted7999472
Depth2
GenerationSize0894656
TotalPromotedSize039192
GenerationSize16793488
TotalPromotedSize13462776
GenerationSize24390824
TotalPromotedSize24389256
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize41461440
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount5
PinnedObjectCount0
SinkBlockCount6
GCHandleCount1226
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.394228661392216
AllocRateMBSec
0
HeapSizePeakMB
19.029392
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
11.430104
GenSizeBeforeMB
[ 0.137512, 6.793488, 4.390824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
7.6468478881523465
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
12.785152
PromotedMB
0.039192
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
32155.5246
DurationMSec
2.070799999997689
PauseDurationMSec
2.8839999999981956
SuspendDurationMSec
0
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
47.16449999999895
PauseStartRelativeMSec
32155.5246
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize12785152
TotalPromoted39192
Depth0
GenerationSize039360
TotalPromotedSize039192
GenerationSize16793488
TotalPromotedSize10
GenerationSize24390824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41453200
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount6
SinkBlockCount6
GCHandleCount1227
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount32
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure0
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.720975999999999
RatioPeakAfter
1.4883977914380682
AllocRateMBSec
163.70312417178536
HeapSizePeakMB
19.029392
UserAllocated
[ 7.612696, 0, 0, 0.10828, 0 ]
HeapSizeBeforeMB
19.029392
GenSizeBeforeMB
[ 7.736800000000001, 6.793488, 4.390824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.762410461848726
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
13.426328
PromotedMB
2.7898
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
32205.363
DurationMSec
4.4869999999973516
PauseDurationMSec
4.9354999999995925
SuspendDurationMSec
0.0672999999987951
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
39.13850000000093
PauseStartRelativeMSec
32204.9471
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13426328
TotalPromoted2789800
Depth1
GenerationSize03424
TotalPromotedSize041296
GenerationSize14772968
TotalPromotedSize12748504
GenerationSize27071976
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41469680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount19
SinkBlockCount6
GCHandleCount1227
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration1
Gen0ReductionCount41
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
6.853568
RatioPeakAfter
1.3649551835766265
AllocRateMBSec
175.11064552805644
HeapSizePeakMB
18.326336
UserAllocated
[ 6.8536, 0, 0, -3.2E-05, 0 ]
HeapSizeBeforeMB
18.326336
GenSizeBeforeMB
[ 7.033744, 6.793488, 4.390824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
11.198212097834402
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
14.351536
PromotedMB
9.931472
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
9
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
32255.9905
DurationMSec
10.276000000001659
PauseDurationMSec
1.5364000000008673
SuspendDurationMSec
0.21020000000135042
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
8.183700000001409
PauseStartRelativeMSec
32255.9192
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.4900000000016007
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize14351536
TotalPromoted9931472
Depth2
GenerationSize0924512
TotalPromotedSize05336
GenerationSize14772968
TotalPromotedSize12748504
GenerationSize27071976
TotalPromotedSize27069384
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize41473800
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount5
PinnedObjectCount0
SinkBlockCount5
GCHandleCount1226
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.3768672565779718
AllocRateMBSec
0
HeapSizePeakMB
19.76016
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
11.956648000000001
GenSizeBeforeMB
[ 0.003424, 4.772968, 7.071976, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
7.5779248978575655
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
13.426328
PromotedMB
0.005336
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
32256.0044
DurationMSec
2.079200000000128
PauseDurationMSec
2.7387999999991735
SuspendDurationMSec
0
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
46.153400000002875
PauseStartRelativeMSec
32256.0044
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13426328
TotalPromoted5336
Depth0
GenerationSize03424
TotalPromotedSize05336
GenerationSize14772968
TotalPromotedSize10
GenerationSize27071976
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41469680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount8
SinkBlockCount7
GCHandleCount1227
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount84
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure0
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.765903999999999
RatioPeakAfter
1.4717471523114882
AllocRateMBSec
168.26287987449493
HeapSizePeakMB
19.76016
UserAllocated
[ 7.657655999999999, 0, 0, 0.108248, 0 ]
HeapSizeBeforeMB
19.76016
GenSizeBeforeMB
[ 7.806936, 4.772968, 7.071975999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.601711520445099
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
11.441744
PromotedMB
0.160344
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
32303.8562
DurationMSec
1.9238000000004831
PauseDurationMSec
2.0791000000026543
SuspendDurationMSec
0.1007000000026892
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
37.46479999999792
PauseStartRelativeMSec
32303.7332
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11441744
TotalPromoted160344
Depth1
GenerationSize01488008
TotalPromotedSize056880
GenerationSize11291440
TotalPromotedSize1103464
GenerationSize27071976
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41482040
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount12
SinkBlockCount5
GCHandleCount1228
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration1
Gen0ReductionCount43
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
6.5562320000000005
RatioPeakAfter
1.6296921168661
AllocRateMBSec
174.99711729410978
HeapSizePeakMB
18.64652
UserAllocated
[ 6.5562320000000005, 0, 0, 0, 0 ]
HeapSizeBeforeMB
18.64652
GenSizeBeforeMB
[ 6.693295999999999, 4.772968, 7.071975999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.257700934916951
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
9.559792
PromotedMB
0.160424
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
32352.626
DurationMSec
1.971799999999348
PauseDurationMSec
2.0855000000010477
SuspendDurationMSec
0.05819999999948777
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
46.76260000000184
PauseStartRelativeMSec
32352.5439
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9559792
TotalPromoted160424
Depth1
GenerationSize057872
TotalPromotedSize056960
GenerationSize1831384
TotalPromotedSize1103464
GenerationSize27071976
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41490280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount12
SinkBlockCount7
GCHandleCount1228
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration1
Gen0ReductionCount40
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.641024
RatioPeakAfter
1.7059551086467155
AllocRateMBSec
163.40032419069297
HeapSizePeakMB
16.308576000000002
UserAllocated
[ 7.641024, 0, 0, 0, 0 ]
HeapSizeBeforeMB
16.308576000000002
GenSizeBeforeMB
[ 7.836880000000001, 1.29144, 7.071975999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
4.269357457098484
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
9.594816
PromotedMB
0.159816
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
32423.5752
DurationMSec
1.5018999999992957
PauseDurationMSec
1.761000000002241
SuspendDurationMSec
0.12280000000100699
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
68.76499999999942
PauseStartRelativeMSec
32423.3641
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9594816
TotalPromoted159816
Depth1
GenerationSize053112
TotalPromotedSize056352
GenerationSize1801992
TotalPromotedSize1103464
GenerationSize27141152
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41490280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount12
SinkBlockCount9
GCHandleCount1228
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration1
Gen0ReductionCount40
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
11.468383999999999
RatioPeakAfter
2.0539082771363204
AllocRateMBSec
166.7764705882367
HeapSizePeakMB
19.706872
UserAllocated
[ 11.468352, 0, 0, 3.2E-05, 0 ]
HeapSizeBeforeMB
19.706872
GenSizeBeforeMB
[ 11.695232, 0.831384, 7.071975999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.4969514788903378
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
9.627456
PromotedMB
0.090824
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
32501.3043
DurationMSec
1.5050000000010186
PauseDurationMSec
1.6908999999977823
SuspendDurationMSec
0.0878999999986263
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
76.07110000000102
PauseStartRelativeMSec
32501.1496
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9627456
TotalPromoted90824
Depth1
GenerationSize01440
TotalPromotedSize03768
GenerationSize1801064
TotalPromotedSize187056
GenerationSize27226392
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41490280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount9
SinkBlockCount9
GCHandleCount1228
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration1
Gen0ReductionCount21
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.471216
RatioPeakAfter
2.150143090760425
AllocRateMBSec
163.94157571009006
HeapSizePeakMB
20.700408
UserAllocated
[ 12.471216, 0, 0, 0, 0 ]
HeapSizeBeforeMB
20.700408
GenSizeBeforeMB
[ 12.648983999999999, 0.8019919999999999, 7.141151999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.1744553895190557
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
9.516648
PromotedMB
0.005008
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
32578.3109
DurationMSec
1.3315000000002328
PauseDurationMSec
1.4854000000013912
SuspendDurationMSec
0.056599999999889405
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
75.37870000000112
PauseStartRelativeMSec
32578.1895
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9516648
TotalPromoted5008
Depth1
GenerationSize0960
TotalPromotedSize02000
GenerationSize1688944
TotalPromotedSize13008
GenerationSize27228184
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41490280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount9
GCHandleCount1228
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration1
Gen0ReductionCount19
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated320
FreeListConsumed320
AllocedSinceLastGCMB
12.653528000000001
RatioPeakAfter
2.2014003249883785
AllocRateMBSec
167.8660947986608
HeapSizePeakMB
20.949952000000003
UserAllocated
[ 12.653528000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
20.949952000000003
GenSizeBeforeMB
[ 12.814216000000002, 0.801064, 7.226392000000001, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.932501649016046
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
9.516208
PromotedMB
0.002408
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
32655.6969
DurationMSec
1.0974000000023807
PauseDurationMSec
1.3438999999998487
SuspendDurationMSec
0.14949999999953434
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
75.84089999999924
PauseStartRelativeMSec
32655.4849
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9516208
TotalPromoted2408
Depth1
GenerationSize0687016
TotalPromotedSize01192
GenerationSize11848
TotalPromotedSize11216
GenerationSize27228784
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41490280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount9
GCHandleCount1228
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration1
Gen0ReductionCount17
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.66216
RatioPeakAfter
2.190188360742009
AllocRateMBSec
166.95687946741307
HeapSizePeakMB
20.842287999999996
UserAllocated
[ 12.66216, 0, 0, 0, 0 ]
HeapSizeBeforeMB
20.842287999999996
GenSizeBeforeMB
[ 12.81688, 0.688944, 7.228183999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.7411459251042491
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
9.525312
PromotedMB
0.00088
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
32731.8849
DurationMSec
1.2093999999997322
PauseDurationMSec
1.389100000000326
SuspendDurationMSec
0.0918999999994412
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
74.94390000000203
PauseStartRelativeMSec
32731.7396
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9525312
TotalPromoted880
Depth0
GenerationSize0687016
TotalPromotedSize0880
GenerationSize12712
TotalPromotedSize10
GenerationSize27228784
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41498520
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount11
GCHandleCount1228
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount14
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.493423999999997
RatioPeakAfter
2.0973330847325524
AllocRateMBSec
166.70368102006512
HeapSizePeakMB
19.977752
UserAllocated
[ 12.493423999999997, 0, 0, 0, 0 ]
HeapSizeBeforeMB
19.977752
GenSizeBeforeMB
[ 12.638839999999998, 0.001848, 7.228783999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.8197896060685197
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
9.525728
PromotedMB
0.000504
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
32813.6952
DurationMSec
1.1028999999980442
PauseDurationMSec
1.3312999999980093
SuspendDurationMSec
0.13190000000031432
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
80.40659999999843
PauseStartRelativeMSec
32813.5023
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9525728
TotalPromoted504
Depth0
GenerationSize0687016
TotalPromotedSize0504
GenerationSize13128
TotalPromotedSize10
GenerationSize27228784
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41498520
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount11
GCHandleCount1228
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount15
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.743768
RatioPeakAfter
2.1241597492601088
AllocRateMBSec
158.49156661269407
HeapSizePeakMB
20.234168
UserAllocated
[ 12.743768, 0, 0, 0, 0 ]
HeapSizeBeforeMB
20.234168
GenSizeBeforeMB
[ 12.894392, 0.002712, 7.228783999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.6287426028783065
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
9.532592
PromotedMB
0.00276
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
32897.4004
DurationMSec
1.5282999999981257
PauseDurationMSec
1.7331000000049244
SuspendDurationMSec
0.104300000006333
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
82.43409999999858
PauseStartRelativeMSec
32897.234
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9532592
TotalPromoted2760
Depth0
GenerationSize0687016
TotalPromotedSize02760
GenerationSize15872
TotalPromotedSize10
GenerationSize27228784
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41502640
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount11
GCHandleCount1228
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.793631999999999
RatioPeakAfter
2.1313531513779256
AllocRateMBSec
155.19829779181455
HeapSizePeakMB
20.317320000000002
UserAllocated
[ 12.793631999999999, 0, 0, 0, 0 ]
HeapSizeBeforeMB
20.317320000000002
GenSizeBeforeMB
[ 12.977128, 0.0031279999999999997, 7.228783999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.0591156650154123
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
9.583176
PromotedMB
0.046384
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
32985.1968
DurationMSec
1.371500000001106
PauseDurationMSec
1.5456000000049244
SuspendDurationMSec
0.05400000000372529
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
86.12809999999445
PauseStartRelativeMSec
32985.0583
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9583176
TotalPromoted46384
Depth0
GenerationSize0687016
TotalPromotedSize046384
GenerationSize152336
TotalPromotedSize10
GenerationSize27228784
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41506760
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount11
GCHandleCount1228
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount18
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.800352
RatioPeakAfter
2.1181754357845457
AllocRateMBSec
148.6199277587782
HeapSizePeakMB
20.298848
UserAllocated
[ 12.800352, 0, 0, 0, 0 ]
HeapSizeBeforeMB
20.298848
GenSizeBeforeMB
[ 12.955912, 0.0058720000000000005, 7.228783999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.7629003908868173
(373 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.5882600508907798
MeanSizeAfterMB
12.975975389312977
MeanSizePeakMB
20.40947024936387
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
393
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
9.561200000000099
TotalPauseTimeMSec
624.1862000000765
MaxSuspendDurationMSec
0.21020000000135042
MaxSizePeakMB
27.241496
MaxAllocRateMBSec
216.9600242883558
TotalAllocatedMB
3689.101360000003
TotalCpuMSec
0
TotalPromotedMB
56.7958799999997
TotalSizeAfterMB
5099.558328
TotalSizePeakMB
8020.921808000001
FinalizedObjects(empty)
ProcessDuration
32603.516
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.5347819628648636
MeanSizeAfterMB
13.006108477453578
MeanSizePeakMB
20.43298943236075
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
377
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
8.01879999999801
TotalPauseTimeMSec
578.6128000000535
MaxSuspendDurationMSec
0.1967000000004191
MaxSizePeakMB
27.241496
MaxAllocRateMBSec
216.9600242883558
TotalAllocatedMB
3560.602120000002
TotalCpuMSec
0
TotalPromotedMB
9.209407999999984
TotalSizeAfterMB
4903.302895999999
TotalSizePeakMB
7703.237016000002
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
3.1908923076933626
MeanSizeAfterMB
11.626289230769231
MeanSizePeakMB
19.35798030769231
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
13
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
9.561200000000099
TotalPauseTimeMSec
41.481600000013714
MaxSuspendDurationMSec
0.14949999999953434
MaxSizePeakMB
26.761592
MaxAllocRateMBSec
175.11064552805644
TotalAllocatedMB
128.49924000000001
TotalCpuMSec
0
TotalPromotedMB
17.523535999999996
TotalSizeAfterMB
151.14176
TotalSizePeakMB
251.65374400000002
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.3639333333364145
MeanSizeAfterMB
15.037890666666668
MeanSizePeakMB
22.010349333333334
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
3
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
1.5364000000008673
TotalPauseTimeMSec
4.091800000009243
MaxSuspendDurationMSec
0.21020000000135042
MaxSizePeakMB
27.241496
MaxAllocRateMBSec
0
TotalAllocatedMB
0
TotalCpuMSec
0
TotalPromotedMB
30.062936
TotalSizeAfterMB
45.113672
TotalSizePeakMB
66.031048
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking(empty)
BGCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
13.648688
PromotedMB
7.999472
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
6
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
32154.8396
DurationMSec
10.966599999999744
PauseDurationMSec
1.5089000000043598
SuspendDurationMSec
0.15930000000298605
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
8.21190000000206
PauseStartRelativeMSec
32154.7444
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.442300000002433
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13648688
TotalPromoted7999472
Depth2
GenerationSize0894656
TotalPromotedSize039192
GenerationSize16793488
TotalPromotedSize13462776
GenerationSize24390824
TotalPromotedSize24389256
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize41461440
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount5
PinnedObjectCount0
SinkBlockCount6
GCHandleCount1226
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.394228661392216
AllocRateMBSec
0
HeapSizePeakMB
19.029392
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
11.430104
GenSizeBeforeMB
[ 0.137512, 6.793488, 4.390824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
7.6468478881523465
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
14.351536
PromotedMB
9.931472
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
9
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
32255.9905
DurationMSec
10.276000000001659
PauseDurationMSec
1.5364000000008673
SuspendDurationMSec
0.21020000000135042
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
8.183700000001409
PauseStartRelativeMSec
32255.9192
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.4900000000016007
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize14351536
TotalPromoted9931472
Depth2
GenerationSize0924512
TotalPromotedSize05336
GenerationSize14772968
TotalPromotedSize12748504
GenerationSize27071976
TotalPromotedSize27069384
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize41473800
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount5
PinnedObjectCount0
SinkBlockCount5
GCHandleCount1226
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.3768672565779718
AllocRateMBSec
0
HeapSizePeakMB
19.76016
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
11.956648000000001
GenSizeBeforeMB
[ 0.003424, 4.772968, 7.071976, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
7.5779248978575655
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
17.113448
PromotedMB
12.131992
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
168
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
47542.2109
DurationMSec
10.988100000002305
PauseDurationMSec
1.0465000000040163
SuspendDurationMSec
0.14609999999811407
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
9.432699999997567
PauseStartRelativeMSec
47542.0306
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0.9422000000049593
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize17113448
TotalPromoted12131992
Depth2
GenerationSize01205128
TotalPromotedSize01736
GenerationSize12302512
TotalPromotedSize13739816
GenerationSize211941328
TotalPromotedSize28282192
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize41556200
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount4
PinnedObjectCount0
SinkBlockCount27
GCHandleCount1402
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.5918180836497706
AllocRateMBSec
0
HeapSizePeakMB
27.241496
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.039936
GenSizeBeforeMB
[ 0.687152, 2.302184, 11.94232, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.1817427163716037
GCThreadIDsToHeapNumbers(empty)
DurationMSec
64326.9364
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="19498"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttps_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 3:00:46 PM"\\r\\n SessionEndTime="8/21/2023 3:01:54 PM"\\r\\n SessionDuration="00:01:08.285...
Events
[ <Event MSec= "0.0000" PID="12180" PName="PerfView" TID="12164" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 3:01:52 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="90" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 3:00:46 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="12180" PName="PerfView" TID="12164" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "4.3959" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="12180" PName="PerfView" TID="12164" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "4.3646" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "4.3959" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "4.4152" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "4.4152" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", + "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337149721728
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="12180" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="155.984" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmp6B62.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", + "
Count109
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="12164" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337149721728" /> ... (more) ]
Count1644
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", + "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="103" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1342" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="272" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="28" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="5" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", + " ... (more) ]
Count78
(values)
indexvalue
0\r\n", + "
1\r\n", + "
2\r\n", + "
3\r\n", + "
4\r\n", + "
5\r\n", + "
6\r\n", + "
7\r\n", + "
8\r\n", + "
9\r\n", + "
10\r\n", + "
11\r\n", + "
12\r\n", + "
13\r\n", + "
14\r\n", + "
15\r\n", + "
16\r\n", + "
17\r\n", + "
18\r\n", + "
19\r\n", + "
... (more)
MaxEventIndex19498
EventCount
19498
Size
4587904
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttps_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", + "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", + "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", + "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", + "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", + " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", + " at lambda_method760(Closure, TraceLog)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 15:00:46Z
SessionEndTime2023-08-21 15:01:54Z
SessionEndTimeRelativeMSec
68285.7589
SessionDuration00:01:08.2857589
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [101, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [98, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [103, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [104, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttps_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
1GC.Analysis.API.GCProcessData
Benchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\3jf0gver.1ny\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios json --urls https://10.0.0.104:5000 --server Kestrel --kestrelTransport Sockets --protocol https 
NumberOfHeapCountSwitches
9
Benchmark
JsonHttps
Id
datas_3 | JsonHttps
TotalSuspensionTimeMSec
31.258800000076008
PercentPauseTimeInGC
1.9144751136658895
PercentTimeInGC
1.8185995645377646
MeanHeapSizeBeforeMB
20.40947024936387
MaxHeapSizeMB
27.241496
TotalAllocationsMB
3689.101360000003
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttps_Windows.gc.etl.zip
ProcessName
Benchmarks
datas_3 | JsonIISInProc
Submission#4+LoadInfo
WorkingSetMB
82
PrivateMemoryMB
53
Latency50thMS
0.21
Latency75thMS
0.39
Latency90thMS
0.56
Latency99thMS
1.86
MeanLatencyMS
0.34
ProcessId
9632
RequestsPerMSec
894.497
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
Benchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\eeko31yi.eey\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios json --urls http://10.0.0.104:5000 --server IISInProcess --kestrelTransport Sockets --protocol http 
ProcessID
9632
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
2.920032
PromotedMB
1.244464
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
29646.8005
DurationMSec
4.763499999997293
PauseDurationMSec
5.12749999999869
SuspendDurationMSec
0.05789999999979045
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
29646.4946
PauseStartRelativeMSec
29646.4946
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize2920032
TotalPromoted1244464
Depth0
GenerationSize01349152
TotalPromotedSize01244464
GenerationSize11257760
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4204840
TotalPromotedSize40
FinalizationPromotedSize30682
FinalizationPromotedCount29
PinnedObjectCount3
SinkBlockCount3
GCHandleCount545
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
0.9349130420488543
AllocRateMBSec
0
HeapSizePeakMB
2.729976
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.729976
GenSizeBeforeMB
[ 2.621696, 0, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
0.017292477230103003
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
4.23984
PromotedMB
2.219976
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
29666.2549
DurationMSec
6.56420000000071
PauseDurationMSec
6.77009999999791
SuspendDurationMSec
0.14919999999983702
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
14.51510000000053
PauseStartRelativeMSec
29666.0803
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4239840
TotalPromoted2219976
Depth1
GenerationSize01349152
TotalPromotedSize01013712
GenerationSize11021104
TotalPromotedSize11206264
GenerationSize21206264
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4555040
TotalPromotedSize40
FinalizationPromotedSize1256
FinalizationPromotedCount21
PinnedObjectCount2
SinkBlockCount6
GCHandleCount790
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.398136
RatioPeakAfter
0.9405468130872864
AllocRateMBSec
165.2166364682236
HeapSizePeakMB
3.9877680000000004
UserAllocated
[ 2.398136, 0, 0, 0, 0 ]
HeapSizeBeforeMB
3.9877680000000004
GenSizeBeforeMB
[ 2.621728, 1.25776, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
31.806607407956733
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.332552
PromotedMB
0.73984
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
29687.7233
DurationMSec
4.233099999997648
PauseDurationMSec
4.404199999997218
SuspendDurationMSec
0.12409999999727006
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
14.762900000001537
PauseStartRelativeMSec
29687.5829
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5332552
TotalPromoted739840
Depth0
GenerationSize01349152
TotalPromotedSize0739840
GenerationSize11767736
TotalPromotedSize10
GenerationSize21206264
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4901120
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount6
GCHandleCount933
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount5305
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.506088
RatioPeakAfter
0.9296411924346917
AllocRateMBSec
169.75580678591194
HeapSizePeakMB
4.9573599999999995
UserAllocated
[ 2.506088, 0, 0, 0, 0 ]
HeapSizeBeforeMB
4.9573599999999995
GenSizeBeforeMB
[ 2.621712, 1.021104, 1.206264, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
22.97791528190234
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
6.255184
PromotedMB
2.36308
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
29764.519
DurationMSec
5.4438999999983935
PauseDurationMSec
5.8663999999989755
SuspendDurationMSec
0.30309999999735737
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
72.18940000000293
PauseStartRelativeMSec
29764.1467
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6255184
TotalPromoted2363080
Depth1
GenerationSize01349152
TotalPromotedSize0661808
GenerationSize1667736
TotalPromotedSize11701272
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41222480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount8
GCHandleCount1071
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration1
Gen0ReductionCount227
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.612015999999999
RatioPeakAfter
2.0531501551353246
AllocRateMBSec
133.14996384510204
HeapSizePeakMB
12.842832000000001
UserAllocated
[ 9.611984, 0, 0, 3.200000000000425E-05, 0 ]
HeapSizeBeforeMB
12.842832000000001
GenSizeBeforeMB
[ 9.760552, 1.767736, 1.206264, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
7.515649061311052
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.275976
PromotedMB
0.000504
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
5
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
29845.3579
DurationMSec
1.0002999999996973
PauseDurationMSec
1.186600000000908
SuspendDurationMSec
0.08499999999912689
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
75.2397000000019
PauseStartRelativeMSec
29845.2036
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6275976
TotalPromoted504
Depth0
GenerationSize01349344
TotalPromotedSize0504
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41243080
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount12
GCHandleCount1071
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount69
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.996687999999999
RatioPeakAfter
2.2014819687009637
AllocRateMBSec
132.86453826902215
HeapSizePeakMB
13.816448
UserAllocated
[ 9.996687999999999, 0, 0, 0, 0 ]
HeapSizeBeforeMB
13.816448
GenSizeBeforeMB
[ 10.132895999999999, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.5526068905610562
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.28656
PromotedMB
0.00324
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
29913.7124
DurationMSec
0.9406999999991967
PauseDurationMSec
1.2448999999978696
SuspendDurationMSec
0.2180999999982305
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
67.07760000000053
PauseStartRelativeMSec
29913.4369
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6286560
TotalPromoted3240
Depth0
GenerationSize01351688
TotalPromotedSize03240
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount13
GCHandleCount1071
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.128072
RatioPeakAfter
2.219883688376473
AllocRateMBSec
150.99037532648634
HeapSizePeakMB
13.955432
UserAllocated
[ 10.128072, 0, 0, 0, 0 ]
HeapSizeBeforeMB
13.955432
GenSizeBeforeMB
[ 10.27188, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.8220937465665026
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.286584
PromotedMB
0.007976
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
29973.801
DurationMSec
0.9004999999997381
PauseDurationMSec
1.1296000000002095
SuspendDurationMSec
0.1316999999980908
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
58.95809999999983
PauseStartRelativeMSec
29973.6126
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6286584
TotalPromoted7976
Depth0
GenerationSize01351712
TotalPromotedSize07976
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount15
GCHandleCount1071
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.059096
RatioPeakAfter
2.2113300323355256
AllocRateMBSec
170.61431762556848
HeapSizePeakMB
13.901712
UserAllocated
[ 10.059096, 0, 0, 0, 0 ]
HeapSizeBeforeMB
13.901712
GenSizeBeforeMB
[ 10.21816, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.8799188519450882
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.286912
PromotedMB
0.008304
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
30033.2426
DurationMSec
0.8452999999972235
PauseDurationMSec
1.1617999999980384
SuspendDurationMSec
0.22639999999955762
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
58.252700000000914
PauseStartRelativeMSec
30032.9553
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6286912
TotalPromoted8304
Depth0
GenerationSize01352040
TotalPromotedSize08304
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount17
GCHandleCount1071
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount14
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.960367999999999
RatioPeakAfter
2.1948237863039917
AllocRateMBSec
170.98551655116145
HeapSizePeakMB
13.798664
UserAllocated
[ 9.960367999999999, 0, 0, 0, 0 ]
HeapSizeBeforeMB
13.798664
GenSizeBeforeMB
[ 10.115112, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.9554149239631047
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.287184
PromotedMB
0.008544
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
30093.2882
DurationMSec
0.8966000000000349
PauseDurationMSec
1.2165999999997439
SuspendDurationMSec
0.2294999999976426
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
58.907500000001164
PauseStartRelativeMSec
30092.9965
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6287184
TotalPromoted8544
Depth0
GenerationSize01352312
TotalPromotedSize08544
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount19
GCHandleCount1071
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.084
RatioPeakAfter
2.2125021313198405
AllocRateMBSec
171.18363536051947
HeapSizePeakMB
13.910408
UserAllocated
[ 10.084, 0, 0, 0, 0 ]
HeapSizeBeforeMB
13.910408
GenSizeBeforeMB
[ 10.226856, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.023481432569844
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.2864
PromotedMB
0.007784
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
30152.6083
DurationMSec
0.8290000000015425
PauseDurationMSec
1.103899999998248
SuspendDurationMSec
0.1841999999996915
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
58.17689999999857
PauseStartRelativeMSec
30152.3629
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6286400
TotalPromoted7784
Depth0
GenerationSize01351528
TotalPromotedSize07784
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount22
GCHandleCount1071
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount14
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.961944
RatioPeakAfter
2.194490964622041
AllocRateMBSec
171.23538724133198
HeapSizePeakMB
13.795448
UserAllocated
[ 9.961944, 0, 0, 0, 0 ]
HeapSizeBeforeMB
13.795448
GenSizeBeforeMB
[ 10.111896, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.8621543568884145
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.2864
PromotedMB
0.007816
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
30212.0517
DurationMSec
0.867099999999482
PauseDurationMSec
1.1126000000003842
SuspendDurationMSec
0.15160000000105356
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
58.39760000000024
PauseStartRelativeMSec
30211.836
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6286400
TotalPromoted7816
Depth0
GenerationSize01351528
TotalPromotedSize07816
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount26
GCHandleCount1071
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.960344000000001
RatioPeakAfter
2.195946805803003
AllocRateMBSec
170.5608449662308
HeapSizePeakMB
13.8046
UserAllocated
[ 9.960344000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
13.8046
GenSizeBeforeMB
[ 10.121048, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.8695954643075852
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.325704
PromotedMB
0.066616
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
30271.4767
DurationMSec
0.9053999999996449
PauseDurationMSec
1.2524000000012165
SuspendDurationMSec
0.2628000000004249
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
58.23749999999927
PauseStartRelativeMSec
30271.1574
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6325704
TotalPromoted66616
Depth0
GenerationSize01390832
TotalPromotedSize066616
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount26
GCHandleCount1086
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount14
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.981024
RatioPeakAfter
2.1878241536436103
AllocRateMBSec
171.3848293625263
HeapSizePeakMB
13.839528
UserAllocated
[ 9.981024, 0, 0, 0, 0 ]
HeapSizeBeforeMB
13.839528
GenSizeBeforeMB
[ 10.155975999999999, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.105231308173667
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.433048
PromotedMB
0.221368
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
30331.2741
DurationMSec
0.9805000000014843
PauseDurationMSec
1.239400000002206
SuspendDurationMSec
0.15430000000196742
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
58.67919999999867
PauseStartRelativeMSec
30331.0624
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6433048
TotalPromoted221368
Depth0
GenerationSize01498176
TotalPromotedSize0221368
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount34
GCHandleCount1129
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount14
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.117816000000001
RatioPeakAfter
2.189960342282539
AllocRateMBSec
172.42593627725378
HeapSizePeakMB
14.088120000000002
UserAllocated
[ 10.117816000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.088120000000002
GenSizeBeforeMB
[ 10.404568000000001, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.0684728948977242
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.450368
PromotedMB
0.238912
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
30395.413
DurationMSec
1.073499999998603
PauseDurationMSec
1.4263000000028114
SuspendDurationMSec
0.2187000000012631
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
62.87999999999738
PauseStartRelativeMSec
30395.1357
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6450368
TotalPromoted238912
Depth0
GenerationSize01515496
TotalPromotedSize0238912
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount36
GCHandleCount1134
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount16
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.892592
RatioPeakAfter
2.1691140722513818
AllocRateMBSec
157.32493638677502
HeapSizePeakMB
13.991584000000001
UserAllocated
[ 9.892592, 0, 0, 0, 0 ]
HeapSizeBeforeMB
13.991584000000001
GenSizeBeforeMB
[ 10.308032, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.217978642843403
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.560112
PromotedMB
0.348672
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
30457.6735
DurationMSec
1.0835000000006403
PauseDurationMSec
1.3598000000019965
SuspendDurationMSec
0.18189999999958673
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
60.948199999998906
PauseStartRelativeMSec
30457.4358
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6560112
TotalPromoted348672
Depth0
GenerationSize01625240
TotalPromotedSize0348672
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount41
GCHandleCount1164
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount16
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.773392000000001
RatioPeakAfter
2.124553971029763
AllocRateMBSec
160.355711899616
HeapSizePeakMB
13.937312
UserAllocated
[ 9.773392000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
13.937312
GenSizeBeforeMB
[ 10.25376, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.1823842845252246
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.577824
PromotedMB
0.366152
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
30522.8181
DurationMSec
1.0326999999997497
PauseDurationMSec
1.4517000000014377
SuspendDurationMSec
0.29609999999956926
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
63.70750000000044
PauseStartRelativeMSec
30522.4656
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6577824
TotalPromoted366152
Depth0
GenerationSize01642952
TotalPromotedSize0366152
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount44
GCHandleCount1166
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount17
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.022288
RatioPeakAfter
2.164887354845615
AllocRateMBSec
157.3172389436084
HeapSizePeakMB
14.240248000000001
UserAllocated
[ 10.022288, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.240248000000001
GenSizeBeforeMB
[ 10.556696, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.2279279058082295
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.577392
PromotedMB
0.36572
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
30586.034
DurationMSec
1.0489999999990687
PauseDurationMSec
1.3566999999966356
SuspendDurationMSec
0.21019999999771244
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
61.91560000000027
PauseStartRelativeMSec
30585.7675
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6577392
TotalPromoted365720
Depth0
GenerationSize01642520
TotalPromotedSize0365720
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount47
GCHandleCount1166
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount15
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.558752
RatioPeakAfter
2.1009117291473585
AllocRateMBSec
154.38358022856855
HeapSizePeakMB
13.818520000000001
UserAllocated
[ 9.558752, 0, 0, 0, 0 ]
HeapSizeBeforeMB
13.818520000000001
GenSizeBeforeMB
[ 10.134968, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.14422424978498
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.577848
PromotedMB
0.366176
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
30648.3704
DurationMSec
0.9919000000008964
PauseDurationMSec
1.3431000000018685
SuspendDurationMSec
0.2617000000027474
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
60.96600000000035
PauseStartRelativeMSec
30648.0503
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6577848
TotalPromoted366176
Depth0
GenerationSize01642976
TotalPromotedSize0366176
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount51
GCHandleCount1166
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount16
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.20816
RatioPeakAfter
2.202024735141341
AllocRateMBSec
167.44021257750126
HeapSizePeakMB
14.484584
UserAllocated
[ 10.20816, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.484584
GenSizeBeforeMB
[ 10.801032, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.1555438932705187
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.578032
PromotedMB
0.366392
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
30703.6315
DurationMSec
1.0090000000018335
PauseDurationMSec
1.3411999999989348
SuspendDurationMSec
0.23999999999796273
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
53.96510000000126
PauseStartRelativeMSec
30703.3289
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6578032
TotalPromoted366392
Depth0
GenerationSize01643160
TotalPromotedSize0366392
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount56
GCHandleCount1166
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount15
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.378112
RatioPeakAfter
2.0646503391895936
AllocRateMBSec
173.78105479281575
HeapSizePeakMB
13.581336
UserAllocated
[ 9.378112, 0, 0, 0, 0 ]
HeapSizeBeforeMB
13.581336
GenSizeBeforeMB
[ 9.897784, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.425040185293412
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.577848
PromotedMB
0.366176
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
30761.3308
DurationMSec
1.0051999999996042
PauseDurationMSec
1.265000000003056
SuspendDurationMSec
0.16440000000147847
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
56.46059999999852
PauseStartRelativeMSec
30761.1023
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6577848
TotalPromoted366176
Depth0
GenerationSize01642976
TotalPromotedSize0366176
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount62
GCHandleCount1166
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount17
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.914456000000001
RatioPeakAfter
2.14329428104754
AllocRateMBSec
175.59955083722562
HeapSizePeakMB
14.098264
UserAllocated
[ 9.914456000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.098264
GenSizeBeforeMB
[ 10.414712, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.1914020815773614
(473 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.222146450304006
MeanSizeAfterMB
6.7439634888438205
MeanSizePeakMB
14.872232746450308
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
493
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
6.77009999999791
TotalPauseTimeMSec
602.5181999998749
MaxSuspendDurationMSec
0.30309999999735737
MaxSizePeakMB
16.97152
MaxAllocRateMBSec
233.26692434194842
TotalAllocatedMB
4803.277272000001
TotalCpuMSec
0
TotalPromotedMB
212.6800239999996
TotalSizeAfterMB
3324.7740000000035
TotalSizePeakMB
7332.010744000002
FinalizedObjects(empty)
ProcessDuration
30354.038299999997
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.180338645418049
MeanSizeAfterMB
6.5804713944223145
MeanSizePeakMB
14.098847745019928
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
251
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
5.12749999999869
TotalPauseTimeMSec
296.2649999999303
MaxSuspendDurationMSec
0.29609999999956926
MaxSizePeakMB
16.97152
MaxAllocRateMBSec
221.65505160474316
TotalAllocatedMB
2452.2823920000005
TotalCpuMSec
0
TotalPromotedMB
103.77028800000004
TotalSizeAfterMB
1651.6983200000009
TotalSizePeakMB
3538.810784000002
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.2670616666664651
MeanSizeAfterMB
6.895082666666668
MeanSizePeakMB
15.66802226666667
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
240
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
6.77009999999791
TotalPauseTimeMSec
304.09479999995165
MaxSuspendDurationMSec
0.30309999999735737
MaxSizePeakMB
16.125256
MaxAllocRateMBSec
233.26692434194842
TotalAllocatedMB
2350.994880000002
TotalCpuMSec
0
TotalPromotedMB
99.41885600000006
TotalSizeAfterMB
1654.8198400000003
TotalSizePeakMB
3760.3253440000008
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.07919999999649
MeanSizeAfterMB
9.12792
MeanSizePeakMB
16.437308
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
2
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
1.193199999994249
TotalPauseTimeMSec
2.15839999999298
MaxSuspendDurationMSec
0.20569999999861466
MaxSizePeakMB
16.97152
MaxAllocRateMBSec
0
TotalAllocatedMB
0
TotalCpuMSec
0
TotalPromotedMB
9.49088
TotalSizeAfterMB
18.25584
TotalSizePeakMB
32.874616
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking(empty)
BGCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
10.373816
PromotedMB
3.4708
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
252
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
45005.3079
DurationMSec
29.666700000001583
PauseDurationMSec
1.193199999994249
SuspendDurationMSec
0.17589999999472639
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
27.570700000003853
PauseStartRelativeMSec
45005.1302
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.0795999999972992
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10373816
TotalPromoted3470800
Depth2
GenerationSize02770712
TotalPromotedSize0349840
GenerationSize13342608
TotalPromotedSize11701272
GenerationSize22900896
TotalPromotedSize21311440
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount5
PinnedObjectCount0
SinkBlockCount64
GCHandleCount1174
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.6359958572621687
AllocRateMBSec
0
HeapSizePeakMB
16.97152
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.7111279999999995
GenSizeBeforeMB
[ 0.352704, 3.342608, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.1442719272226687
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
7.882024
PromotedMB
6.02008
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
255
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
45142.9609
DurationMSec
12.534599999999045
PauseDurationMSec
0.9651999999987311
SuspendDurationMSec
0.20569999999861466
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
11.814600000005157
PauseStartRelativeMSec
45142.786
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0.8488999999972293
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize7882024
TotalPromoted6020080
Depth2
GenerationSize01012136
TotalPromotedSize0840
GenerationSize1904168
TotalPromotedSize12300144
GenerationSize24606120
TotalPromotedSize23610848
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount4
PinnedObjectCount0
SinkBlockCount85
GCHandleCount1174
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
2.0176411540995054
AllocRateMBSec
0
HeapSizePeakMB
15.903096000000001
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
5.61844
GenSizeBeforeMB
[ 0.000584, 0.903456, 4.60612, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.7123854371490395
GCThreadIDsToHeapNumbers(empty)
DurationMSec
62493.165100000006
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="23659"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonIISInProc_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 3:24:53 PM"\\r\\n SessionEndTime="8/21/2023 3:26:00 PM"\\r\\n SessionDuration="00:01:06...
Events
[ <Event MSec= "0.0000" PID="2040" PName="PerfView" TID="6244" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 3:25:57 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="100" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 3:24:53 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="2040" PName="PerfView" TID="6244" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "11.4566" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="2040" PName="PerfView" TID="6244" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "11.4254" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "11.4566" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "11.4767" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "11.4767" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", + "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337148274456.8
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="2040" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="155.8467" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmp80E8.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", + "
Count105
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="6244" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337148274456.8" /> ... (more) ]
Count1391
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", + "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="100" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1194" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="167" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="28" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", + " ... (more) ]
Count78
(values)
indexvalue
0\r\n", + "
1\r\n", + "
2\r\n", + "
3\r\n", + "
4\r\n", + "
5\r\n", + "
6\r\n", + "
7\r\n", + "
8\r\n", + "
9\r\n", + "
10\r\n", + "
11\r\n", + "
12\r\n", + "
13\r\n", + "
14\r\n", + "
15\r\n", + "
16\r\n", + "
17\r\n", + "
18\r\n", + "
19\r\n", + "
... (more)
MaxEventIndex23659
EventCount
23659
Size
5263031
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonIISInProc_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", + "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", + "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", + "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", + "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", + " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", + " at lambda_method760(Closure, TraceLog)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 15:24:53Z
SessionEndTime2023-08-21 15:26:00Z
SessionEndTimeRelativeMSec
66543.1852
SessionDuration00:01:06.5431852
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [98, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [100, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [101, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonIISInProc_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
Benchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\eeko31yi.eey\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios json --urls http://10.0.0.104:5000 --server IISInProcess --kestrelTransport Sockets --protocol http 
NumberOfHeapCountSwitches
5
Benchmark
JsonIISInProc
Id
datas_3 | JsonIISInProc
TotalSuspensionTimeMSec
52.264599999896745
PercentPauseTimeInGC
1.984968833619331
PercentTimeInGC
1.8127854836368782
MeanHeapSizeBeforeMB
14.872232746450308
MaxHeapSizeMB
16.97152
TotalAllocationsMB
4803.277272000001
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonIISInProc_Windows.gc.etl.zip
ProcessName
Benchmarks
datas_3 | JsonIISOutOfProc
Submission#4+LoadInfo
WorkingSetMB
83
PrivateMemoryMB
54
Latency50thMS
0.21
Latency75thMS
0.4
Latency90thMS
0.58
Latency99thMS
1.89
MeanLatencyMS
0.34
ProcessId
10428
RequestsPerMSec
883.992
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
Benchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\f03xukje.qjb\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios json --urls http://10.0.0.104:5000 --server IISOutOfProcess --kestrelTransport Sockets --protocol http 
ProcessID
10428
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
2.974296
PromotedMB
1.253608
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
27480.5449
DurationMSec
4.910799999997835
PauseDurationMSec
5.284299999999348
SuspendDurationMSec
0.1430000000000291
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
27480.229
PauseStartRelativeMSec
27480.229
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize2974296
TotalPromoted1253608
Depth0
GenerationSize01381792
TotalPromotedSize01253608
GenerationSize11267024
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4217200
TotalPromotedSize40
FinalizationPromotedSize30682
FinalizationPromotedCount29
PinnedObjectCount2
SinkBlockCount4
GCHandleCount549
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
0.9178857786851075
AllocRateMBSec
0
HeapSizePeakMB
2.730064
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.730064
GenSizeBeforeMB
[ 2.621784, 0, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
0.019225764286524526
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
4.309384
PromotedMB
2.252448
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
27499.7588
DurationMSec
5.731999999999971
PauseDurationMSec
5.966000000000349
SuspendDurationMSec
0.1772000000019034
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
14.099099999999453
PauseStartRelativeMSec
27499.5559
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4309384
TotalPromoted2252448
Depth1
GenerationSize01381792
TotalPromotedSize01037688
GenerationSize11045392
TotalPromotedSize11214760
GenerationSize21214760
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4559160
TotalPromotedSize40
FinalizationPromotedSize1256
FinalizationPromotedCount21
PinnedObjectCount2
SinkBlockCount4
GCHandleCount793
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.406216
RatioPeakAfter
0.927521891759936
AllocRateMBSec
170.6645105006769
HeapSizePeakMB
3.997048
UserAllocated
[ 2.406216, 0, 0, 0, 0 ]
HeapSizeBeforeMB
3.997048
GenSizeBeforeMB
[ 2.621744, 1.267024, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
29.73321837419404
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
3.55736
PromotedMB
0.415328
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
27523.1981
DurationMSec
3.270300000000134
PauseDurationMSec
3.514599999998609
SuspendDurationMSec
0.19529999999940628
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
17.494800000000396
PauseStartRelativeMSec
27522.9866
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3557360
TotalPromoted415328
Depth0
GenerationSize0584
TotalPromotedSize0415328
GenerationSize11464456
TotalPromotedSize10
GenerationSize21214760
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4769280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount7
GCHandleCount864
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount281
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.468064
RatioPeakAfter
1.4027750916409922
AllocRateMBSec
141.07414774675584
HeapSizePeakMB
4.990176
UserAllocated
[ 2.468064, 0, 0, 0, 0 ]
HeapSizeBeforeMB
4.990176
GenSizeBeforeMB
[ 2.621744, 1.045392, 1.21476, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
16.728702390352773
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
5.668
PromotedMB
2.354136
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
27594.6988
DurationMSec
4.927500000001601
PauseDurationMSec
5.28859999999986
SuspendDurationMSec
0.24730000000272412
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
67.91429999999673
PauseStartRelativeMSec
27594.3837
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5668000
TotalPromoted2354136
Depth1
GenerationSize0584
TotalPromotedSize0950592
GenerationSize11726728
TotalPromotedSize11403544
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41214240
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount7
GCHandleCount1072
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration1
Gen0ReductionCount160
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.453496
RatioPeakAfter
2.1891587861679604
AllocRateMBSec
139.19742970185152
HeapSizePeakMB
12.408152000000001
UserAllocated
[ 9.453464, 0, 0, 3.200000000000425E-05, 0 ]
HeapSizeBeforeMB
12.408152000000001
GenSizeBeforeMB
[ 9.620656, 1.464456, 1.21476, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
7.224577168391016
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.69308
PromotedMB
0.000648
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
5
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
27679.5037
DurationMSec
0.9609999999993306
PauseDurationMSec
1.1692999999977474
SuspendDurationMSec
0.11449999999967986
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
79.70100000000093
PauseStartRelativeMSec
27679.3283
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5693080
TotalPromoted648
Depth0
GenerationSize0944
TotalPromotedSize0648
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41238960
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount12
GCHandleCount1072
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount67
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.976512
RatioPeakAfter
2.5610418262170915
AllocRateMBSec
125.17423871720408
HeapSizePeakMB
14.580216
UserAllocated
[ 9.976512, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.580216
GenSizeBeforeMB
[ 10.12704, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.445895464710489
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.705568
PromotedMB
0.00068
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
27759.3095
DurationMSec
0.7593000000015309
PauseDurationMSec
1.0614999999997963
SuspendDurationMSec
0.21310000000084983
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
78.5727999999981
PauseStartRelativeMSec
27759.0386
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5705568
TotalPromoted680
Depth0
GenerationSize01072
TotalPromotedSize0680
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount12
GCHandleCount1072
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount11
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.15028
RatioPeakAfter
2.5850944200472235
AllocRateMBSec
129.18312698542303
HeapSizePeakMB
14.749431999999999
UserAllocated
[ 10.15028, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.749431999999999
GenSizeBeforeMB
[ 10.296256, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.3329683314850815
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.708096
PromotedMB
0.003184
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
27826.577
DurationMSec
0.8967999999986205
PauseDurationMSec
1.1781999999984691
SuspendDurationMSec
0.1908000000003085
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
66.25890000000072
PauseStartRelativeMSec
27826.3289
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5708096
TotalPromoted3184
Depth0
GenerationSize03600
TotalPromotedSize03184
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount14
GCHandleCount1072
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount9
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.938784
RatioPeakAfter
2.5482038143717274
AllocRateMBSec
149.9992302920799
HeapSizePeakMB
14.545392
UserAllocated
[ 9.938784, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.545392
GenSizeBeforeMB
[ 10.092216, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.7471095287289686
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.70768
PromotedMB
0.002768
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
27889.9803
DurationMSec
0.8942000000024564
PauseDurationMSec
1.1985999999997148
SuspendDurationMSec
0.20729999999821302
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
62.23389999999927
PauseStartRelativeMSec
27889.7088
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5707680
TotalPromoted2768
Depth0
GenerationSize03184
TotalPromotedSize02768
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount18
GCHandleCount1072
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.760864
RatioPeakAfter
2.5166456423625707
AllocRateMBSec
156.84159276535962
HeapSizePeakMB
14.364207999999998
UserAllocated
[ 9.760864, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.364207999999998
GenSizeBeforeMB
[ 9.911031999999999, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.8895676506518488
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.70764
PromotedMB
0.002704
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
27956.5057
DurationMSec
0.8833999999988009
PauseDurationMSec
1.155399999999645
SuspendDurationMSec
0.17870000000039
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
65.3885999999984
PauseStartRelativeMSec
27956.2644
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5707640
TotalPromoted2704
Depth0
GenerationSize03144
TotalPromotedSize02704
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount20
GCHandleCount1072
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.01708
RatioPeakAfter
2.5604445970663883
AllocRateMBSec
153.19306423444215
HeapSizePeakMB
14.614096
UserAllocated
[ 10.01708, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.614096
GenSizeBeforeMB
[ 10.16092, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.7362947823991326
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.707736
PromotedMB
0.0028
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
28021.8163
DurationMSec
0.8801999999996042
PauseDurationMSec
1.2219000000004598
SuspendDurationMSec
0.2515000000021246
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
64.11259999999675
PauseStartRelativeMSec
28021.5028
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5707736
TotalPromoted2800
Depth0
GenerationSize03240
TotalPromotedSize02800
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount21
GCHandleCount1072
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.04144
RatioPeakAfter
2.5611051387099897
AllocRateMBSec
156.62194326856982
HeapSizePeakMB
14.618112
UserAllocated
[ 10.04144, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.618112
GenSizeBeforeMB
[ 10.164936, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.8702217052254353
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.709496
PromotedMB
0.00456
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
28086.8638
DurationMSec
0.8774000000012165
PauseDurationMSec
1.0472000000008848
SuspendDurationMSec
0.06130000000121072
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
64.02880000000005
PauseStartRelativeMSec
28086.7264
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5709496
TotalPromoted4560
Depth0
GenerationSize05000
TotalPromotedSize04560
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount23
GCHandleCount1072
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.021936
RatioPeakAfter
2.5626023733093084
AllocRateMBSec
156.52231495826865
HeapSizePeakMB
14.631168000000002
UserAllocated
[ 10.021936, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.631168000000002
GenSizeBeforeMB
[ 10.177992000000001, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.609195402300187
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.710032
PromotedMB
0.005072
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
28148.6175
DurationMSec
0.9170000000012806
PauseDurationMSec
1.25
SuspendDurationMSec
0.23719999999957508
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
60.57419999999911
PauseStartRelativeMSec
28148.3165
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5710032
TotalPromoted5072
Depth0
GenerationSize05536
TotalPromotedSize05072
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount23
GCHandleCount1072
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.835024
RatioPeakAfter
2.5278681450471736
AllocRateMBSec
162.36325036071705
HeapSizePeakMB
14.434208000000002
UserAllocated
[ 9.835024, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.434208000000002
GenSizeBeforeMB
[ 9.981032, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.0218619893181278
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.885504
PromotedMB
0.18004
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
28215.3446
DurationMSec
0.9490000000005239
PauseDurationMSec
1.2440999999998894
SuspendDurationMSec
0.19230000000243308
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
65.55959999999686
PauseStartRelativeMSec
28215.0954
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5885504
TotalPromoted180040
Depth0
GenerationSize0181008
TotalPromotedSize0180040
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount31
GCHandleCount1127
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount14
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.134072
RatioPeakAfter
2.520095475255815
AllocRateMBSec
154.5780023063058
HeapSizePeakMB
14.832032000000002
UserAllocated
[ 10.134072, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.832032000000002
GenSizeBeforeMB
[ 10.378856, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.8623219971348142
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.9208
PromotedMB
0.215264
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
28282.4777
DurationMSec
1.018899999999121
PauseDurationMSec
1.310700000001816
SuspendDurationMSec
0.20210000000224682
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
65.92589999999836
PauseStartRelativeMSec
28282.2205
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5920800
TotalPromoted215264
Depth0
GenerationSize0216304
TotalPromotedSize0215264
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount34
GCHandleCount1135
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.137647999999999
RatioPeakAfter
2.5245858667747605
AllocRateMBSec
153.7733728322291
HeapSizePeakMB
14.947568
UserAllocated
[ 10.137647999999999, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.947568
GenSizeBeforeMB
[ 10.494392000000001, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.9493847101159376
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.062192
PromotedMB
0.356296
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
28344.8334
DurationMSec
0.9874999999992724
PauseDurationMSec
1.315599999998085
SuspendDurationMSec
0.23889999999664724
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
61.03910000000178
PauseStartRelativeMSec
28344.5368
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6062192
TotalPromoted356296
Depth0
GenerationSize0357696
TotalPromotedSize0356296
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount43
GCHandleCount1167
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount14
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.851592
RatioPeakAfter
2.440896626170864
AllocRateMBSec
161.39805468953037
HeapSizePeakMB
14.797184000000001
UserAllocated
[ 9.851592, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.797184000000001
GenSizeBeforeMB
[ 10.344008, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.1098650141819104
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.062504
PromotedMB
0.356608
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
28405.5714
DurationMSec
1.0122000000010303
PauseDurationMSec
1.3604000000013912
SuspendDurationMSec
0.2606999999989057
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
59.43089999999938
PauseStartRelativeMSec
28405.2529
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6062504
TotalPromoted356608
Depth0
GenerationSize0358008
TotalPromotedSize0356608
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount44
GCHandleCount1167
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount15
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.759232
RatioPeakAfter
2.426658027772023
AllocRateMBSec
164.21141190862164
HeapSizePeakMB
14.711624
UserAllocated
[ 9.759232, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.711624
GenSizeBeforeMB
[ 10.258448, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.2378202144079395
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.063512
PromotedMB
0.357616
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
28466.1743
DurationMSec
0.99120000000039
PauseDurationMSec
1.2582000000002154
SuspendDurationMSec
0.17929999999978463
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
59.35369999999966
PauseStartRelativeMSec
28465.9384
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6063512
TotalPromoted357616
Depth0
GenerationSize0359016
TotalPromotedSize0357616
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount49
GCHandleCount1167
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount16
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.033168
RatioPeakAfter
2.469684235802617
AllocRateMBSec
169.04031256686704
HeapSizePeakMB
14.97496
UserAllocated
[ 10.033168, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.97496
GenSizeBeforeMB
[ 10.521784, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.075829993780459
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.063584
PromotedMB
0.357664
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
28525.1047
DurationMSec
0.958600000001752
PauseDurationMSec
1.2933999999986554
SuspendDurationMSec
0.23210000000108266
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
57.64229999999952
PauseStartRelativeMSec
28524.8092
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6063584
TotalPromoted357664
Depth0
GenerationSize0359088
TotalPromotedSize0357664
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount52
GCHandleCount1167
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount16
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.831096
RatioPeakAfter
2.444530495495733
AllocRateMBSec
170.55349977360518
HeapSizePeakMB
14.822616
UserAllocated
[ 9.831096, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.822616
GenSizeBeforeMB
[ 10.36944, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.1945951265509622
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.063176
PromotedMB
0.35728
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
28588.4229
DurationMSec
1.073899999999412
PauseDurationMSec
2.2695000000021537
SuspendDurationMSec
1.0830999999998312
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
61.20939999999973
PauseStartRelativeMSec
28587.2738
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6063176
TotalPromoted357280
Depth0
GenerationSize0358680
TotalPromotedSize0357280
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount52
GCHandleCount1167
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount16
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.071896
RatioPeakAfter
2.4845711224612317
AllocRateMBSec
164.54819031063928
HeapSizePeakMB
15.064392000000002
UserAllocated
[ 10.071896, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.064392000000002
GenSizeBeforeMB
[ 10.611216, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.5752037291164247
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.063448
PromotedMB
0.357552
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
28658.7417
DurationMSec
4.140999999999622
PauseDurationMSec
4.419899999997142
SuspendDurationMSec
0.18109999999796855
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
69.00580000000264
PauseStartRelativeMSec
28658.5037
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6063448
TotalPromoted357552
Depth0
GenerationSize0358952
TotalPromotedSize0357552
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount56
GCHandleCount1167
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount16
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.77576
RatioPeakAfter
2.4342321398649744
AllocRateMBSec
141.66577302197246
HeapSizePeakMB
14.75984
UserAllocated
[ 9.77576, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.75984
GenSizeBeforeMB
[ 10.306664, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
6.019554461172526
(528 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.0555149635035914
MeanSizeAfterMB
7.143008335766415
MeanSizePeakMB
14.15813975182482
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
548
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
5.966000000000349
TotalPauseTimeMSec
578.4221999999681
MaxSuspendDurationMSec
1.0830999999998312
MaxSizePeakMB
16.880288
MaxAllocRateMBSec
214.54769422951182
TotalAllocatedMB
4742.106760000002
TotalCpuMSec
0
TotalPromotedMB
105.67407999999996
TotalSizeAfterMB
3914.3685679999953
TotalSizePeakMB
7758.660584000001
FinalizedObjects(empty)
ProcessDuration
30347.5144
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.0330944954127876
MeanSizeAfterMB
7.149465849541277
MeanSizePeakMB
14.175000176146792
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
545
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
5.284299999999348
TotalPauseTimeMSec
563.0364999999692
MaxSuspendDurationMSec
1.0830999999998312
MaxSizePeakMB
16.071632
MaxAllocRateMBSec
214.54769422951182
TotalAllocatedMB
4720.406288000003
TotalCpuMSec
0
TotalPromotedMB
98.20151199999997
TotalSizeAfterMB
3896.4588879999956
TotalSizePeakMB
7725.375096000002
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
5.128566666666302
MeanSizeAfterMB
5.969893333333334
MeanSizePeakMB
11.095162666666667
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
3
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
5.966000000000349
TotalPauseTimeMSec
15.385699999998906
MaxSuspendDurationMSec
0.24730000000272412
MaxSizePeakMB
16.880288
MaxAllocRateMBSec
170.6645105006769
TotalAllocatedMB
21.700471999999998
TotalCpuMSec
0
TotalPromotedMB
7.472568
TotalSizeAfterMB
17.90968
TotalSizePeakMB
33.285488
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
NaN
MeanSizeAfterMB
NaN
MeanSizePeakMB
NaN
MeanCpuMSec
NaN
Interesting
False
GCVersionInfoMismatch
False
Count
0
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
0
TotalPauseTimeMSec
0
MaxSuspendDurationMSec
0
MaxSizePeakMB
0
MaxAllocRateMBSec
0
TotalAllocatedMB
0
TotalCpuMSec
0
TotalPromotedMB
0
TotalSizeAfterMB
0
TotalSizePeakMB
0
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking(empty)
BGCs(empty)
GCThreadIDsToHeapNumbers(empty)
DurationMSec
59606.950300000004
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="24439"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonIISOutOfProc_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 3:13:29 PM"\\r\\n SessionEndTime="8/21/2023 3:14:33 PM"\\r\\n SessionDuration="00:01...
Events
[ <Event MSec= "0.0000" PID="1992" PName="PerfView" TID="7848" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 3:14:30 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="99" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 3:13:29 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="1992" PName="PerfView" TID="7848" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "10.5974" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="1992" PName="PerfView" TID="7848" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "10.5674" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "10.5974" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "10.6163" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "10.6163" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", + "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337148958378.4
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="1992" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="156.4332" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmp1147.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", + "
Count106
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="7848" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337148958378.4" /> ... (more) ]
Count1435
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", + "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="102" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1243" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="162" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="27" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="5" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", + " ... (more) ]
Count77
(values)
indexvalue
0\r\n", + "
1\r\n", + "
2\r\n", + "
3\r\n", + "
4\r\n", + "
5\r\n", + "
6\r\n", + "
7\r\n", + "
8\r\n", + "
9\r\n", + "
10\r\n", + "
11\r\n", + "
12\r\n", + "
13\r\n", + "
14\r\n", + "
15\r\n", + "
16\r\n", + "
17\r\n", + "
18\r\n", + "
19\r\n", + "
... (more)
MaxEventIndex24439
EventCount
24439
Size
5375345
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonIISOutOfProc_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", + "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", + "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", + "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", + "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", + " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", + " at lambda_method760(Closure, TraceLog)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 15:13:29Z
SessionEndTime2023-08-21 15:14:33Z
SessionEndTimeRelativeMSec
63575.9905
SessionDuration00:01:03.5759905
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [100, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [98, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [102, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [103, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonIISOutOfProc_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
1GC.Analysis.API.GCProcessData
Benchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\f03xukje.qjb\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios json --urls http://10.0.0.104:5000 --server IISOutOfProcess --kestrelTransport Sockets --protocol http 
NumberOfHeapCountSwitches
2
Benchmark
JsonIISOutOfProc
Id
datas_3 | JsonIISOutOfProc
TotalSuspensionTimeMSec
59.39200000005076
PercentPauseTimeInGC
1.9059953061591368
PercentTimeInGC
1.7102889981655873
MeanHeapSizeBeforeMB
14.15813975182482
MaxHeapSizeMB
16.880288
TotalAllocationsMB
4742.106760000002
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonIISOutOfProc_Windows.gc.etl.zip
ProcessName
Benchmarks
datas_3 | JsonMapAction
Submission#4+LoadInfo
WorkingSetMB
86
PrivateMemoryMB
56
Latency50thMS
0.24
Latency75thMS
0.43
Latency90thMS
0.55
Latency99thMS
1.16
MeanLatencyMS
0.34
ProcessId
10600
RequestsPerMSec
807.822
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
MapAction
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\dqnyu4eh.dnn\\src\\BenchmarksApps\\MapAction\\published\\MapAction.exe"  
ProcessID
10600
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
2.222144
PromotedMB
1.204112
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6169.9643
DurationMSec
5.880000000000109
PauseDurationMSec
6.206599999999526
SuspendDurationMSec
0.06989999999950669
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
6169.6908
PauseStartRelativeMSec
6169.6908
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize2222144
TotalPromoted1204112
Depth0
GenerationSize0793984
TotalPromotedSize01204112
GenerationSize11211424
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize4111744
TotalPromotedSize40
FinalizationPromotedSize37598
FinalizationPromotedCount23
PinnedObjectCount2
SinkBlockCount3
GCHandleCount712
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.2270815932720833
AllocRateMBSec
0
HeapSizePeakMB
2.7267520000000003
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.7267520000000003
GenSizeBeforeMB
[ 2.62176, 0, 0, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
0.10049713584943179
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
3.744112
PromotedMB
2.405616
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6192.0401
DurationMSec
7.203599999999824
PauseDurationMSec
7.427300000000287
SuspendDurationMSec
0.1613999999999578
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
16.001100000000406
PauseStartRelativeMSec
6191.8463
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3744112
TotalPromoted2405616
Depth1
GenerationSize0793984
TotalPromotedSize01251048
GenerationSize11253496
TotalPromotedSize11154568
GenerationSize21154416
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize4437224
TotalPromotedSize40
FinalizationPromotedSize1352
FinalizationPromotedCount25
PinnedObjectCount4
SinkBlockCount13
GCHandleCount1008
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.344576
RatioPeakAfter
1.055624404398159
AllocRateMBSec
146.52592634256024
HeapSizePeakMB
3.952376
UserAllocated
[ 2.344576, 0, 0, 0, 0 ]
HeapSizeBeforeMB
3.952376
GenSizeBeforeMB
[ 2.63596, 1.211424, 0, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
31.702122210650607
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.924168
PromotedMB
0.818152
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6216.6257
DurationMSec
4.814700000000812
PauseDurationMSec
5.127599999999802
SuspendDurationMSec
0.2687000000005355
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
17.09569999999985
PauseStartRelativeMSec
6216.3403
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4924168
TotalPromoted818152
Depth0
GenerationSize0793984
TotalPromotedSize0818152
GenerationSize12070992
TotalPromotedSize10
GenerationSize21154416
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize4799784
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount15
GCHandleCount1165
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount303
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.504744
RatioPeakAfter
1.044398160257733
AllocRateMBSec
146.51309978532743
HeapSizePeakMB
5.142792
UserAllocated
[ 2.504744, 0, 0, 0, 0 ]
HeapSizeBeforeMB
5.142792
GenSizeBeforeMB
[ 2.629888, 1.253496, 1.154416, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
23.073080955573122
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
6.3402
PromotedMB
2.756592
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6303.53
DurationMSec
5.589899999999943
PauseDurationMSec
5.860899999999674
SuspendDurationMSec
0.15429999999923893
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
81.86509999999998
PauseStartRelativeMSec
6303.3064
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6340200
TotalPromoted2756592
Depth1
GenerationSize0793984
TotalPromotedSize0755960
GenerationSize11144584
TotalPromotedSize12000632
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41141744
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount16
GCHandleCount1321
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration1
Gen0ReductionCount221
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.222544
RatioPeakAfter
2.008594050660862
AllocRateMBSec
112.6553806200689
HeapSizePeakMB
12.734887999999998
UserAllocated
[ 9.222512, 0, 0, 3.200000000000425E-05, 0 ]
HeapSizeBeforeMB
12.734887999999998
GenSizeBeforeMB
[ 9.404487999999999, 2.070992, 1.154416, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
6.6809155780494915
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.369608
PromotedMB
0.011056
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
5
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6403.7095
DurationMSec
1.1715999999996711
PauseDurationMSec
1.524199999999837
SuspendDurationMSec
0.2647999999999229
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
94.26550000000043
PauseStartRelativeMSec
6403.3864
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6369608
TotalPromoted11056
Depth0
GenerationSize0794552
TotalPromotedSize011056
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41170584
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount18
GCHandleCount1321
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount63
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.779024
RatioPeakAfter
2.2481308111896365
AllocRateMBSec
103.73916225978704
HeapSizePeakMB
14.319711999999999
UserAllocated
[ 9.779024, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.319711999999999
GenSizeBeforeMB
[ 9.91524, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.591194042783131
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.378168
PromotedMB
0.011288
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6500.5617
DurationMSec
0.9027999999998428
PauseDurationMSec
1.309599999999591
SuspendDurationMSec
0.3147999999991953
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
95.30460000000039
PauseStartRelativeMSec
6500.1868
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6378168
TotalPromoted11288
Depth0
GenerationSize0794872
TotalPromotedSize011288
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41178824
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount20
GCHandleCount1321
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.957120000000002
RatioPeakAfter
2.275361828035887
AllocRateMBSec
104.4768038478726
HeapSizePeakMB
14.512639999999998
UserAllocated
[ 9.957120000000002, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.512639999999998
GenSizeBeforeMB
[ 10.108168, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.3554943269204645
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.37792
PromotedMB
0.011088
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6597.8161
DurationMSec
0.9301999999997861
PauseDurationMSec
1.1909999999998035
SuspendDurationMSec
0.17619999999988067
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
96.1190000000006
PauseStartRelativeMSec
6597.5847
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6377920
TotalPromoted11088
Depth0
GenerationSize0794624
TotalPromotedSize011088
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41178824
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount31
GCHandleCount1321
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount9
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.996248
RatioPeakAfter
2.2846620841904572
AllocRateMBSec
103.99866831739757
HeapSizePeakMB
14.571392
UserAllocated
[ 9.996248, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.571392
GenSizeBeforeMB
[ 10.166920000000001, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.2239235433149713
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.378432
PromotedMB
0.011552
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6694.8549
DurationMSec
0.944999999999709
PauseDurationMSec
1.3666999999995824
SuspendDurationMSec
0.3329999999996289
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
95.71410000000014
PauseStartRelativeMSec
6694.4614
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6378432
TotalPromoted11552
Depth0
GenerationSize0795136
TotalPromotedSize011552
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41178824
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount35
GCHandleCount1321
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount9
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.00528
RatioPeakAfter
2.2801516109288302
AllocRateMBSec
104.53297894458586
HeapSizePeakMB
14.543792
UserAllocated
[ 10.00528, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.543792
GenSizeBeforeMB
[ 10.13932, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.407796392283115
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.547328
PromotedMB
0.229256
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6787.7377
DurationMSec
1.09900000000016
PauseDurationMSec
1.5039999999999054
SuspendDurationMSec
0.30429999999978463
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
91.57049999999981
PauseStartRelativeMSec
6787.3715
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6547328
TotalPromoted229256
Depth0
GenerationSize0959912
TotalPromotedSize0229256
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41182944
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount46
GCHandleCount1375
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount9
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.856256
RatioPeakAfter
2.2197342182948527
AllocRateMBSec
107.63571237461868
HeapSizePeakMB
14.533328000000001
UserAllocated
[ 9.856256, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.533328000000001
GenSizeBeforeMB
[ 10.128856, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.615909835669179
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.667816
PromotedMB
0.363264
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6871.092
DurationMSec
1.0887000000002445
PauseDurationMSec
1.4112999999997555
SuspendDurationMSec
0.22589999999945576
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
81.96960000000036
PauseStartRelativeMSec
6870.8077
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6667816
TotalPromoted363264
Depth0
GenerationSize01076280
TotalPromotedSize0363264
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41187064
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount58
GCHandleCount1410
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount11
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.222064
RatioPeakAfter
2.262580731081961
AllocRateMBSec
124.70554937440168
HeapSizePeakMB
15.086471999999997
UserAllocated
[ 10.222064, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.086471999999997
GenSizeBeforeMB
[ 10.681999999999999, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.692593867420181
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.668112
PromotedMB
0.363208
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6955.3857
DurationMSec
1.0988999999999578
PauseDurationMSec
1.5520999999998821
SuspendDurationMSec
0.3546999999998661
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
82.79070000000047
PauseStartRelativeMSec
6954.9726
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6668112
TotalPromoted363208
Depth0
GenerationSize01076576
TotalPromotedSize0363208
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41187064
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount62
GCHandleCount1410
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.007064
RatioPeakAfter
2.2399299831796466
AllocRateMBSec
120.8718370541612
HeapSizePeakMB
14.936104
UserAllocated
[ 10.007064, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.936104
GenSizeBeforeMB
[ 10.531632000000002, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.8402282115365813
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.668032
PromotedMB
0.363128
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7040.5697
DurationMSec
1.097899999999754
PauseDurationMSec
1.415100000000166
SuspendDurationMSec
0.22929999999996653
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
83.79619999999977
PauseStartRelativeMSec
7040.2819
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6668032
TotalPromoted363128
Depth0
GenerationSize01076496
TotalPromotedSize0363128
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41187064
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount67
GCHandleCount1410
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.070232
RatioPeakAfter
2.2569429780780896
AllocRateMBSec
120.1752824113746
HeapSizePeakMB
15.049368000000001
UserAllocated
[ 10.070232, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.049368000000001
GenSizeBeforeMB
[ 10.644896000000001, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.660695236430106
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.667912
PromotedMB
0.362952
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7121.4125
DurationMSec
1.060099999999693
PauseDurationMSec
1.3126000000002023
SuspendDurationMSec
0.15749999999934516
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
79.52160000000003
PauseStartRelativeMSec
7121.1903
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6667912
TotalPromoted362952
Depth0
GenerationSize01076376
TotalPromotedSize0362952
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41187064
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount68
GCHandleCount1410
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.883232
RatioPeakAfter
2.219707758590695
AllocRateMBSec
124.2836160238224
HeapSizePeakMB
14.800815999999998
UserAllocated
[ 9.883232, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.800815999999998
GenSizeBeforeMB
[ 10.396344, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.6238176415430579
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.667752
PromotedMB
0.362792
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7204.1185
DurationMSec
1.0366000000003623
PauseDurationMSec
1.4540999999999258
SuspendDurationMSec
0.32560000000012224
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
81.25869999999941
PauseStartRelativeMSec
7203.7323
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6667752
TotalPromoted362792
Depth0
GenerationSize01076216
TotalPromotedSize0362792
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41187064
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount72
GCHandleCount1410
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.166727999999999
RatioPeakAfter
2.2631267629629894
AllocRateMBSec
125.1155630104847
HeapSizePeakMB
15.089967999999999
UserAllocated
[ 10.166727999999999, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.089967999999999
GenSizeBeforeMB
[ 10.685496, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.7580108520083197
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.668176
PromotedMB
0.363216
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7287.568
DurationMSec
1.0997999999999593
PauseDurationMSec
1.425000000000182
SuspendDurationMSec
0.23180000000047585
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
82.1234999999997
PauseStartRelativeMSec
7287.2796
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6668176
TotalPromoted363216
Depth0
GenerationSize01076640
TotalPromotedSize0363216
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41187064
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount77
GCHandleCount1410
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.014056
RatioPeakAfter
2.24327252310077
AllocRateMBSec
121.93898214274888
HeapSizePeakMB
14.958535999999999
UserAllocated
[ 10.014056, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.958535999999999
GenSizeBeforeMB
[ 10.554064, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.7055961507390127
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.66772
PromotedMB
0.36276
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7371.0509
DurationMSec
1.050799999999981
PauseDurationMSec
1.330300000000534
SuspendDurationMSec
0.19220000000041182
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
82.13040000000001
PauseStartRelativeMSec
7370.7994
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6667720
TotalPromoted362760
Depth0
GenerationSize01076184
TotalPromotedSize0362760
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41187064
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount82
GCHandleCount1410
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.083680000000001
RatioPeakAfter
2.2511407197662767
AllocRateMBSec
122.77646279574918
HeapSizePeakMB
15.009975999999998
UserAllocated
[ 10.083680000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.009975999999998
GenSizeBeforeMB
[ 10.605504, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.5939238467931918
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.667904
PromotedMB
0.362944
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7443.0085
DurationMSec
1.025499999999738
PauseDurationMSec
1.3120000000008076
SuspendDurationMSec
0.18950000000040745
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
70.65059999999994
PauseStartRelativeMSec
7442.7534
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6667904
TotalPromoted362944
Depth0
GenerationSize01076368
TotalPromotedSize0362944
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41187064
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount85
GCHandleCount1410
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
8.882679999999999
RatioPeakAfter
2.070550505826118
AllocRateMBSec
125.72688696203579
HeapSizePeakMB
13.806231999999998
UserAllocated
[ 8.882679999999999, 0, 0, 0, 0 ]
HeapSizeBeforeMB
13.806231999999998
GenSizeBeforeMB
[ 9.40176, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.8231692573653453
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.667944
PromotedMB
0.363224
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7525.6962
DurationMSec
1.0495999999993728
PauseDurationMSec
1.4173000000000684
SuspendDurationMSec
0.26859999999942374
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
81.32740000000013
PauseStartRelativeMSec
7525.3625
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6667944
TotalPromoted363224
Depth0
GenerationSize01076408
TotalPromotedSize0363224
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41187064
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount89
GCHandleCount1410
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount14
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.219816
RatioPeakAfter
2.2749813135803176
AllocRateMBSec
125.66264260261589
HeapSizePeakMB
15.169448
UserAllocated
[ 10.219816, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.169448
GenSizeBeforeMB
[ 10.764976, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.7128589504827076
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.66768
PromotedMB
0.362608
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7603.8382
DurationMSec
1.0194000000001324
PauseDurationMSec
1.3163000000004104
SuspendDurationMSec
0.19980000000032305
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
76.82759999999962
PauseStartRelativeMSec
7603.5745
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6667680
TotalPromoted362608
Depth0
GenerationSize01076144
TotalPromotedSize0362608
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41187064
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount95
GCHandleCount1410
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.731656000000001
RatioPeakAfter
2.2016821443140646
AllocRateMBSec
126.66874925157168
HeapSizePeakMB
14.680112000000001
UserAllocated
[ 9.731656000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.680112000000001
GenSizeBeforeMB
[ 10.275640000000001, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.6844564962849433
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.668288
PromotedMB
0.363384
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7686.1846
DurationMSec
1.1278000000002066
PauseDurationMSec
1.5261000000000422
SuspendDurationMSec
0.3036999999994805
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
80.95850000000064
PauseStartRelativeMSec
7685.8172
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6668288
TotalPromoted363384
Depth0
GenerationSize01076752
TotalPromotedSize0363384
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41187064
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount98
GCHandleCount1410
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.066256
RatioPeakAfter
2.2498020481418917
AllocRateMBSec
124.3384697097886
HeapSizePeakMB
15.002327999999999
UserAllocated
[ 10.066256, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.002327999999999
GenSizeBeforeMB
[ 10.597856, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.850163545680078
(476 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.09278286290316
MeanSizeAfterMB
7.346215451612896
MeanSizePeakMB
13.908966564516104
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
496
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
7.427300000000287
TotalPauseTimeMSec
542.0202999999674
MaxSuspendDurationMSec
0.3805999999995038
MaxSizePeakMB
17.315096
MaxAllocRateMBSec
191.30083634225275
TotalAllocatedMB
4266.159024000002
TotalCpuMSec
0
TotalPromotedMB
100.06937599999979
TotalSizeAfterMB
3643.7228639999967
TotalSizePeakMB
6898.847415999988
FinalizedObjects(empty)
ProcessDuration
30313.3953
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.0645989837397685
MeanSizeAfterMB
7.350480097560968
MeanSizePeakMB
13.918268682926808
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
492
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
6.206599999999526
TotalPauseTimeMSec
523.7826999999661
MaxSuspendDurationMSec
0.3805999999995038
MaxSizePeakMB
17.315096
MaxAllocRateMBSec
191.30083634225275
TotalAllocatedMB
4244.858704000002
TotalCpuMSec
0
TotalPromotedMB
88.5190159999998
TotalSizeAfterMB
3616.4362079999964
TotalSizePeakMB
6847.788191999989
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
5.703400000000026
MeanSizeAfterMB
5.982261333333334
MeanSizePeakMB
11.248042666666668
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
3
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
7.427300000000287
TotalPauseTimeMSec
17.110200000000077
MaxSuspendDurationMSec
0.1613999999999578
MaxSizePeakMB
17.056864
MaxAllocRateMBSec
154.6302327428715
TotalAllocatedMB
21.30032
TotalCpuMSec
0
TotalPromotedMB
7.830624
TotalSizeAfterMB
17.946784
TotalSizePeakMB
33.744128
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.1274000000012165
MeanSizeAfterMB
9.339872
MeanSizePeakMB
17.315096
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
1.1274000000012165
TotalPauseTimeMSec
1.1274000000012165
MaxSuspendDurationMSec
0.20060000000012224
MaxSizePeakMB
17.315096
MaxAllocRateMBSec
0
TotalAllocatedMB
0
TotalCpuMSec
0
TotalPromotedMB
3.719736
TotalSizeAfterMB
9.339872
TotalSizePeakMB
17.315096
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking(empty)
BGCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
9.339872
PromotedMB
3.719736
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
221
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
21520.0787
DurationMSec
10.731400000000576
PauseDurationMSec
1.1274000000012165
SuspendDurationMSec
0.20060000000012224
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
8.708200000000943
PauseStartRelativeMSec
21519.9018
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.0168000000012398
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9339872
TotalPromoted3719736
Depth2
GenerationSize01123632
TotalPromotedSize09080
GenerationSize13772336
TotalPromotedSize12000632
GenerationSize23151848
TotalPromotedSize21605064
GenerationSize3104992
TotalPromotedSize3104960
GenerationSize41187064
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount6
PinnedObjectCount0
SinkBlockCount41
GCHandleCount1424
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.8538900747247928
AllocRateMBSec
0
HeapSizePeakMB
17.315096
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.826208
GenSizeBeforeMB
[ 0.793984, 3.772336, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
3.484430616649824
GCThreadIDsToHeapNumbers(empty)
DurationMSec
38869.078
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="21588"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonMapAction_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 1:51:02 PM"\\r\\n SessionEndTime="8/21/2023 1:51:46 PM"\\r\\n SessionDuration="00:00:43...
Events
[ <Event MSec= "0.0000" PID="1072" PName="PerfView" TID="11872" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 1:51:43 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="94" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 1:51:02 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="1072" PName="PerfView" TID="11872" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "10.3523" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="1072" PName="PerfView" TID="11872" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "10.3214" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "10.3523" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "10.3721" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "10.3721" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", + "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337153905798.2
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="1072" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="156.1704" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmp930A.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", + "
Count108
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="11872" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337153905798.2" /> ... (more) ]
Count1400
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", + "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="101" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1179" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="191" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="28" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="4" StackCount="0"/>\r\n", + ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", + " ... (more) ]
Count78
(values)
indexvalue
0\r\n", + "
1\r\n", + "
2\r\n", + "
3\r\n", + "
4\r\n", + "
5\r\n", + "
6\r\n", + "
7\r\n", + "
8\r\n", + "
9\r\n", + "
10\r\n", + "
11\r\n", + "
12\r\n", + "
13\r\n", + "
14\r\n", + "
15\r\n", + "
16\r\n", + "
17\r\n", + "
18\r\n", + "
19\r\n", + "
... (more)
MaxEventIndex21588
EventCount
21588
Size
4885597
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonMapAction_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", + "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", + "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", + "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", + "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", + " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", + " at lambda_method760(Closure, TraceLog)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 13:51:02Z
SessionEndTime2023-08-21 13:51:46Z
SessionEndTimeRelativeMSec
43854.6287
SessionDuration00:00:43.8546287
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [99, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [101, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [102, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonMapAction_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
MapAction
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\dqnyu4eh.dnn\\src\\BenchmarksApps\\MapAction\\published\\MapAction.exe"  
NumberOfHeapCountSwitches
4
Benchmark
JsonMapAction
Id
datas_3 | JsonMapAction
TotalSuspensionTimeMSec
56.81480000000283
PercentPauseTimeInGC
1.7880553947711935
PercentTimeInGC
1.6006306624450102
MeanHeapSizeBeforeMB
13.908966564516104
MaxHeapSizeMB
17.315096
TotalAllocationsMB
4266.159024000002
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonMapAction_Windows.gc.etl.zip
ProcessName
MapAction
(439 more)
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "dataManager.Data" ] @@ -620,7 +3371,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 8, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -634,7 +3385,7 @@ }, "outputs": [], "source": [ - "dataManager.SaveBenchmarkData(\"./\")" + "dataManager.SaveBenchmarkData()" ] }, { @@ -666,7 +3417,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 10, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -876,6 +3627,23 @@ "}" ] }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "dotnet_interactive": { + "language": "csharp" + }, + "polyglot_notebook": { + "kernelName": "csharp" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [], + "source": [] + }, { "cell_type": "code", "execution_count": null, @@ -892,6 +3660,8 @@ }, "outputs": [], "source": [ + "var datas3_vs_datas_4 = dataManager.GetBenchmarkToComparison(\"datas_3\", \"datas_4\");\n", + "\n", "Dictionary> comparisons = new()\n", "{\n", " { nameof(run1_vs_run2), run1_vs_run2 },\n", diff --git a/src/benchmarks/gc/GC.Infrastructure/Notebooks/README.md b/src/benchmarks/gc/GC.Infrastructure/Notebooks/README.md index 1b42f9d8a21..079608f07d9 100644 --- a/src/benchmarks/gc/GC.Infrastructure/Notebooks/README.md +++ b/src/benchmarks/gc/GC.Infrastructure/Notebooks/README.md @@ -17,3 +17,4 @@ Each of these examples assume you have cloned the performance repository to C:\p ## Notebooks 1. [Volatility Reporting](./VolatilityReport.ipynb). +2. [ASP.NET Benchmark Analysis](./ASPNetBenchmarkAnalysis.ipynb) From 809b5341167820fd18bc38b5403655f866e59678 Mon Sep 17 00:00:00 2001 From: mrsharm Date: Tue, 12 Sep 2023 10:56:57 -0700 Subject: [PATCH 20/26] Added fix for certain cases where the log wasn't being downloaded --- .../CommandBuilders/ASPNetBenchmarks.CommandBuilder.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/CommandBuilders/ASPNetBenchmarks.CommandBuilder.cs b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/CommandBuilders/ASPNetBenchmarks.CommandBuilder.cs index 5c3b9305f50..f1285d6cf24 100644 --- a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/CommandBuilders/ASPNetBenchmarks.CommandBuilder.cs +++ b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/CommandBuilders/ASPNetBenchmarks.CommandBuilder.cs @@ -41,7 +41,7 @@ public static (string, string) Build(ASPNetBenchmarksConfiguration configuration string.CompareOrdinal(env.Key, "COMPlus_GCLogFile") == 0) { string fileNameOfLog = Path.GetFileName(env.Value); - commandStringBuilder.Append( $" --application.options.downloadFiles \"*.*{fileNameOfLog}.log\" " ); + commandStringBuilder.Append( $" --application.options.downloadFiles \"*{fileNameOfLog}.log\" " ); string fileName = Path.GetFileNameWithoutExtension(env.Value); commandStringBuilder.Append( $" --application.options.downloadFilesOutput \"{Path.Combine(configuration.Output.Path, run.Key, $"{benchmarkNameToCommand.Key}_GCLog")}\" " ); } From 8bf7c48492ac9c2f1aba3ad506bc94036020fb8d Mon Sep 17 00:00:00 2001 From: mrsharm Date: Tue, 12 Sep 2023 17:32:13 -0700 Subject: [PATCH 21/26] implemented the volatility and difference comparisons --- .../Notebooks/ASPNetBenchmarkAnalysis.ipynb | 468 +++++++++--------- 1 file changed, 226 insertions(+), 242 deletions(-) diff --git a/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb b/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb index 6f6d583ef5d..1bdf5454ea8 100644 --- a/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb +++ b/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb @@ -12,7 +12,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 8, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -33,42 +33,6 @@ }, "metadata": {}, "output_type": "display_data" - }, - { - "data": { - "text/plain": [ - "Loading extensions from `C:\\Users\\musharm\\.nuget\\packages\\microsoft.data.analysis\\0.19.1\\interactive-extensions\\dotnet\\Microsoft.Data.Analysis.Interactive.dll`" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/plain": [ - "Loading extensions from `C:\\Users\\musharm\\.nuget\\packages\\xplot.plotly.interactive\\4.0.7\\interactive-extensions\\dotnet\\XPlot.Plotly.Interactive.dll`" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/markdown": [ - "Configuring PowerShell Kernel for XPlot.Plotly integration." - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/markdown": [ - "Installed support for XPlot.Plotly." - ] - }, - "metadata": {}, - "output_type": "display_data" } ], "source": [ @@ -102,7 +66,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 9, "metadata": { "dotnet_interactive": { "language": "pwsh" @@ -121,119 +85,14 @@ "text": [ "MSBuild version 17.8.0-preview-23367-03+0ff2a83e9 for .NET\n", " Determining projects to restore...\n", - " Restored C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj (in 273 ms).\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Analyzer.cs(10,16): warning CS8618: Non-nullable property 'CPUAnalyzer' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\AnalyzerManager.cs(25,44): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Analyzer.cs(45,16): warning CS8618: Non-nullable property 'TraceLog' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Analyzer.cs(45,16): warning CS8618: Non-nullable property 'CPUAnalyzer' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\AnalyzerManager.cs(69,44): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Analyzer.cs(147,35): warning CS8625: Cannot convert null literal to non-nullable reference type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\GCMethodsData.cs(8,29): warning CS8618: Non-nullable property 'gc_methods' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs(160,28): warning CS8629: Nullable value type may be null. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUThreadData.cs(5,23): warning CS8618: Non-nullable property 'Method' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUThreadData.cs(8,29): warning CS8618: Non-nullable property 'Callers' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUThreadData.cs(9,23): warning CS8618: Non-nullable property 'Thread' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GCAnalysis\\AffinitizedAnalysis.cs(8,23): warning CS8618: Non-nullable property 'Name' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(27,16): warning CS8618: Non-nullable property 'GCThreadNodes' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(27,16): warning CS8618: Non-nullable field '_callTree' must contain a non-null value when exiting constructor. Consider declaring the field as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(27,16): warning CS8618: Non-nullable field '_byName' must contain a non-null value when exiting constructor. Consider declaring the field as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalyzer.cs(19,23): warning CS8618: Non-nullable property 'ProcessName' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalyzer.cs(27,28): warning CS8618: Non-nullable property 'Parent' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalyzer.cs(29,28): warning CS8618: Non-nullable property 'StackView' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs(172,28): warning CS8629: Nullable value type may be null. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\SourceCodeAnalysis.cs(15,61): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\SourceCodeAnalysis.cs(18,43): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\SourceCodeAnalysis.cs(36,24): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs(179,16): warning CS8629: Nullable value type may be null. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GCAnalysis\\AffinitizedAnalysis.cs(51,50): warning CS8602: Dereference of a possibly null reference. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(120,34): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalyzer.cs(136,34): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\SourceCodeAnalysis.cs(46,28): warning CS8625: Cannot convert null literal to non-nullable reference type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\SourceCodeAnalysis.cs(101,24): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\SourceCodeAnalysis.cs(110,24): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\SourceCodeAnalysis.cs(201,20): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs(322,24): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs(356,44): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs(357,52): warning CS8602: Dereference of a possibly null reference. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs(357,52): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GCAnalysis\\GCAnalysisExt.cs(84,38): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(189,24): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(210,57): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(248,20): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(283,61): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(286,43): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(304,24): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(310,23): warning CS8625: Cannot convert null literal to non-nullable reference type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(311,25): warning CS8625: Cannot convert null literal to non-nullable reference type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GCAnalysis\\GCSummarization.cs(67,34): warning CS8602: Dereference of a possibly null reference. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GCAnalysis\\GCSummarization.cs(47,38): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalysisExt.cs(251,39): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalysisExt.cs(252,58): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalysisExt.cs(253,51): warning CS8604: Possible null reference argument for parameter 'metricOnLine' in 'string StackView.Annotate(SortedDictionary metricOnLine, SourceLocation sourceLocation)'. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalysisExt.cs(253,66): warning CS8604: Possible null reference argument for parameter 'sourceLocation' in 'string StackView.Annotate(SortedDictionary metricOnLine, SourceLocation sourceLocation)'. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(560,35): warning CS8604: Possible null reference argument for parameter 'inFileName' in 'void AnnotateLines(string inFileName, string outFileName, SortedDictionary lineData)'. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(564,29): warning CS8604: Possible null reference argument for parameter 'source' in 'KeyValuePair Enumerable.First>(IEnumerable> source)'. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(568,32): warning CS8604: Possible null reference argument for parameter 'path' in 'IEnumerable File.ReadLines(string path)'. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", + " All projects are up-to-date for restore.\n", " GC.Analysis.API -> C:\\Users\\musharm\\source\\repos\\performance\\artifacts\\bin\\GC.Analysis.API\\Debug\\net6.0\\GC.Analysis.API.dll\n", "\n", "Build succeeded.\n", - "\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Analyzer.cs(10,16): warning CS8618: Non-nullable property 'CPUAnalyzer' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\AnalyzerManager.cs(25,44): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Analyzer.cs(45,16): warning CS8618: Non-nullable property 'TraceLog' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Analyzer.cs(45,16): warning CS8618: Non-nullable property 'CPUAnalyzer' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\AnalyzerManager.cs(69,44): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Analyzer.cs(147,35): warning CS8625: Cannot convert null literal to non-nullable reference type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\GCMethodsData.cs(8,29): warning CS8618: Non-nullable property 'gc_methods' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs(160,28): warning CS8629: Nullable value type may be null. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUThreadData.cs(5,23): warning CS8618: Non-nullable property 'Method' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUThreadData.cs(8,29): warning CS8618: Non-nullable property 'Callers' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUThreadData.cs(9,23): warning CS8618: Non-nullable property 'Thread' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GCAnalysis\\AffinitizedAnalysis.cs(8,23): warning CS8618: Non-nullable property 'Name' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(27,16): warning CS8618: Non-nullable property 'GCThreadNodes' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(27,16): warning CS8618: Non-nullable field '_callTree' must contain a non-null value when exiting constructor. Consider declaring the field as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(27,16): warning CS8618: Non-nullable field '_byName' must contain a non-null value when exiting constructor. Consider declaring the field as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalyzer.cs(19,23): warning CS8618: Non-nullable property 'ProcessName' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalyzer.cs(27,28): warning CS8618: Non-nullable property 'Parent' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalyzer.cs(29,28): warning CS8618: Non-nullable property 'StackView' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs(172,28): warning CS8629: Nullable value type may be null. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\SourceCodeAnalysis.cs(15,61): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\SourceCodeAnalysis.cs(18,43): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\SourceCodeAnalysis.cs(36,24): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs(179,16): warning CS8629: Nullable value type may be null. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GCAnalysis\\AffinitizedAnalysis.cs(51,50): warning CS8602: Dereference of a possibly null reference. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(120,34): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalyzer.cs(136,34): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\SourceCodeAnalysis.cs(46,28): warning CS8625: Cannot convert null literal to non-nullable reference type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\SourceCodeAnalysis.cs(101,24): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\SourceCodeAnalysis.cs(110,24): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\SourceCodeAnalysis.cs(201,20): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs(322,24): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs(356,44): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs(357,52): warning CS8602: Dereference of a possibly null reference. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\Common.cs(357,52): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GCAnalysis\\GCAnalysisExt.cs(84,38): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(189,24): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(210,57): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(248,20): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(283,61): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(286,43): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(304,24): warning CS8603: Possible null reference return. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(310,23): warning CS8625: Cannot convert null literal to non-nullable reference type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(311,25): warning CS8625: Cannot convert null literal to non-nullable reference type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GCAnalysis\\GCSummarization.cs(67,34): warning CS8602: Dereference of a possibly null reference. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GCAnalysis\\GCSummarization.cs(47,38): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalysisExt.cs(251,39): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalysisExt.cs(252,58): warning CS8600: Converting null literal or possible null value to non-nullable type. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalysisExt.cs(253,51): warning CS8604: Possible null reference argument for parameter 'metricOnLine' in 'string StackView.Annotate(SortedDictionary metricOnLine, SourceLocation sourceLocation)'. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\CPUAnalysisExt.cs(253,66): warning CS8604: Possible null reference argument for parameter 'sourceLocation' in 'string StackView.Annotate(SortedDictionary metricOnLine, SourceLocation sourceLocation)'. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(560,35): warning CS8604: Possible null reference argument for parameter 'inFileName' in 'void AnnotateLines(string inFileName, string outFileName, SortedDictionary lineData)'. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(564,29): warning CS8604: Possible null reference argument for parameter 'source' in 'KeyValuePair Enumerable.First>(IEnumerable> source)'. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - "C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\CPUAnalysis\\StackView.cs(568,32): warning CS8604: Possible null reference argument for parameter 'path' in 'IEnumerable File.ReadLines(string path)'. [C:\\Users\\musharm\\source\\repos\\performance\\src\\benchmarks\\gc\\GC.Infrastructure\\GC.Analysis.API\\GC.Analysis.API.csproj]\n", - " 52 Warning(s)\n", + " 0 Warning(s)\n", " 0 Error(s)\n", "\n", - "Time Elapsed 00:00:03.11\n" + "Time Elapsed 00:00:00.97\n" ] } ], @@ -243,7 +102,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 10, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -274,7 +133,7 @@ }, { "cell_type": "code", - "execution_count": 65, + "execution_count": 11, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -335,7 +194,7 @@ }, { "cell_type": "code", - "execution_count": 103, + "execution_count": 112, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -347,26 +206,7 @@ "languageId": "polyglot-notebook" } }, - "outputs": [ - { - "data": { - "text/plain": [ - "server,,,,,,,,,,datas0,,,,,,,,,," - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/plain": [ - "Benchmark Name, Working Set, Private Memory,RequestsPerMSec,MeanLatencyMS,Latency50thMS,Latency75thMS,Latency90thMS,Latency99thMS,HeapCount,,Benchmark Name, Working Set, Private Memory,RequestsPerMSec,MeanLatencyMS,Latency50thMS,Latency75thMS,Latency90thMS,Latency99thMS,HeapCount" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "// The DataManager is responsible for parsing all the data from ASP.NET results from a basepath.\n", "public class DataManager \n", @@ -773,36 +613,200 @@ " }\n", " }\n", "\n", - " // Create CSV.\n", - " StringBuilder sb = new();\n", - " const int singleBuildColumnSize = 10;\n", - " int numberOfBuilds = buildToBenchmarkVolatilityData.Count;\n", - "\n", - " // Add top row of the pattern: followed by 10 commas, one for each column and one to separate columns.\n", - " sb.AppendLine(string.Join(\"\", namesOfBuilds.Select(n => n + string.Join(\"\", Enumerable.Repeat(\",\", singleBuildColumnSize)))) );\n", + " Dictionary> sortedPerBuildVolatility = new();\n", "\n", - " // Add the row with the names of the columns of the following pattern: ,...,,.\n", - " string columnHeader = \"Benchmark Name,WorkingSetMB,PrivateMemoryMB,RequestsPerMSec,MeanLatencyMS,Latency50thMS,Latency75thMS,Latency90thMS,Latency99thMS,HeapCount\";\n", - " sb.AppendLine(string.Join(\",,\", Enumerable.Repeat(columnHeader, namesOfBuilds.Count)));\n", + " string DisplayDetailsForABenchmark(BenchmarkVolatilityData val) =>\n", + " $\"{val.Benchmark},{val.WorkingSetMB},{val.PrivateMemoryMB},{val.RequestsPerMSec},{val.MeanLatencyMS},{val.Latency50thMS},{val.Latency75thMS},{val.Latency90thMS},{val.Latency99thMS},{val.HeapCount}\";\n", + " if (sortingCriteria == null)\n", + " {\n", + " sortingCriteria = new() { nameof(LoadInfo.PrivateMemoryMB) };\n", + " }\n", "\n", - " // Start creating the benchmark based info for each build.\n", - " foreach (var build in namesOfBuilds)\n", + " foreach (var s in sortingCriteria)\n", " {\n", - " var r = buildToBenchmarkVolatilityData[build].OrderByDescending(b => b.Value.PrivateMemoryMB);\n", + " Func, double> sortingFunctor = null;\n", + "\n", + " switch (s)\n", + " {\n", + " case nameof(LoadInfo.WorkingSetMB):\n", + " sortingFunctor = (data) => data.Value.WorkingSetMB;\n", + " break;\n", + " case nameof(LoadInfo.PrivateMemoryMB):\n", + " sortingFunctor = (data) => data.Value.PrivateMemoryMB;\n", + " break;\n", + " case nameof(LoadInfo.RequestsPerMSec):\n", + " sortingFunctor = (data) => data.Value.RequestsPerMSec;\n", + " break;\n", + " case nameof(LoadInfo.MeanLatencyMS):\n", + " sortingFunctor = (data) => data.Value.MeanLatencyMS;\n", + " break;\n", + " case nameof(LoadInfo.Latency50thMS):\n", + " sortingFunctor = (data) => data.Value.Latency50thMS;\n", + " break;\n", + " case nameof(LoadInfo.Latency75thMS):\n", + " sortingFunctor = (data) => data.Value.Latency75thMS;\n", + " break;\n", + " case nameof(LoadInfo.Latency90thMS):\n", + " sortingFunctor = (data) => data.Value.Latency90thMS;\n", + " break;\n", + " case nameof(LoadInfo.Latency99thMS):\n", + " sortingFunctor = (data) => data.Value.Latency99thMS;\n", + " break;\n", + " default:\n", + " sortingFunctor = (data) => data.Value.PrivateMemoryMB;\n", + " break;\n", + " }\n", + "\n", + " foreach (var b in buildToBenchmarkVolatilityData)\n", + " {\n", + " sortedPerBuildVolatility[b.Key] = b.Value.OrderByDescending(sortingFunctor).Select(k => k.Value).ToList();\n", + " }\n", + "\n", + " // Create CSV.\n", + " StringBuilder top = new();\n", + "\n", + " // Iterate over each of the runs.\n", + " const int singleBuildColumnSize = 10;\n", + " int numberOfBuilds = buildToBenchmarkVolatilityData.Count;\n", + " string columnHeader = \"Benchmark Name,WorkingSetMB,PrivateMemoryMB,RequestsPerMSec,MeanLatencyMS,Latency50thMS,Latency75thMS,Latency90thMS,Latency99thMS,HeapCount\";\n", + "\n", + " int totalCountOfBenchmarks = buildToBenchmarkVolatilityData.First().Value.Count;\n", + "\n", + " string first = string.Join(\",\", namesOfBuilds.Select(build => build + string.Join(\"\", Enumerable.Repeat(\",\", singleBuildColumnSize))));\n", + " string second = string.Join(\",,\", Enumerable.Repeat(columnHeader, numberOfBuilds));\n", + "\n", + " top.AppendLine(first);\n", + " top.AppendLine(second);\n", + "\n", + " for (int benchmarkIdx = 0; benchmarkIdx < totalCountOfBenchmarks; benchmarkIdx++)\n", + " {\n", + " top.AppendLine(string.Join(\",,\", namesOfBuilds.Select(buildName => DisplayDetailsForABenchmark(sortedPerBuildVolatility[buildName][benchmarkIdx]))));\n", + " }\n", + "\n", + " File.WriteAllText(Path.Combine(_basePath, $\"Volatility_{s}.csv\"), top.ToString());\n", " }\n", " }\n", - "}\n", "\n", + " public void SaveDifferences(string baseline, string comparand, List sortingCriteria = null)\n", + " {\n", + " // This function assumes the runs are all in:\n", + " // {build}_{iteration} form.\n", + " // Else, it will except.\n", + "\n", + " // Iteration -> LoadInfos\n", + " Dictionary> iterationData = new();\n", + "\n", + " // Get the max iteration.\n", + " int maxIteration = -1;\n", + " foreach (var run in _runToBenchmarkData)\n", + " {\n", + " string runName = run.Key;\n", + " string[] split = run.Key.Split(\"_\");\n", + " Debug.Assert(split.Length == 2);\n", + " string build = split[0];\n", + " string iterationAsString = split[1];\n", + " int iteration = Convert.ToInt32(iterationAsString);\n", + " maxIteration = System.Math.Max(iteration, maxIteration);\n", + " }\n", + "\n", + " for (int i = 0; i <= maxIteration; i++)\n", + " {\n", + " string baselineIteration = baseline + \"_\" + i.ToString();\n", + " string comparandIteration = comparand + \"_\" + i.ToString();\n", + "\n", + " Dictionary baselineIterationRuns = _runToBenchmarkData[baselineIteration];\n", + " Dictionary comparandIterationRuns = _runToBenchmarkData[comparandIteration];\n", + "\n", + " foreach (var b in baselineIterationRuns)\n", + " {\n", + " if (!iterationData.TryGetValue(i, out var benchmarks))\n", + " {\n", + " iterationData[i] = benchmarks = new();\n", + " }\n", + "\n", + " benchmarks.Add(GetComparison(baselineIterationRuns[b.Key], comparandIterationRuns[b.Key]));\n", + " }\n", + " }\n", + "\n", + " string DisplayDetailsForABenchmark(LoadInfo val) =>\n", + " $\"{val.Benchmark},{val.WorkingSetMB},{val.PrivateMemoryMB},{val.RequestsPerMSec},{val.MeanLatencyMS},{val.Latency50thMS},{val.Latency75thMS},{val.Latency90thMS},{val.Latency99thMS}\";\n", + "\n", + " if (sortingCriteria == null)\n", + " {\n", + " sortingCriteria = new() { nameof(LoadInfo.PrivateMemoryMB) };\n", + " }\n", + "\n", + " foreach (var s in sortingCriteria)\n", + " {\n", + " Func sortingFunctor = null;\n", + "\n", + " switch (s)\n", + " {\n", + " case nameof(LoadInfo.WorkingSetMB):\n", + " sortingFunctor = (data) => data.WorkingSetMB;\n", + " break;\n", + " case nameof(LoadInfo.PrivateMemoryMB):\n", + " sortingFunctor = (data) => data.PrivateMemoryMB;\n", + " break;\n", + " case nameof(LoadInfo.RequestsPerMSec):\n", + " sortingFunctor = (data) => data.RequestsPerMSec;\n", + " break;\n", + " case nameof(LoadInfo.MeanLatencyMS):\n", + " sortingFunctor = (data) => data.MeanLatencyMS;\n", + " break;\n", + " case nameof(LoadInfo.Latency50thMS):\n", + " sortingFunctor = (data) => data.Latency50thMS;\n", + " break;\n", + " case nameof(LoadInfo.Latency75thMS):\n", + " sortingFunctor = (data) => data.Latency75thMS;\n", + " break;\n", + " case nameof(LoadInfo.Latency90thMS):\n", + " sortingFunctor = (data) => data.Latency90thMS;\n", + " break;\n", + " case nameof(LoadInfo.Latency99thMS):\n", + " sortingFunctor = (data) => data.Latency99thMS;\n", + " break;\n", + " default:\n", + " sortingFunctor = (data) => data.PrivateMemoryMB;\n", + " break;\n", + " }\n", + "\n", + " List> sortedLoadInfo = new(); \n", + " foreach (var iteration in iterationData)\n", + " {\n", + " sortedLoadInfo.Add(iteration.Value.OrderByDescending(sortingFunctor).ToList());\n", + " }\n", + "\n", + " // Create CSV.\n", + " StringBuilder top = new();\n", "\n", - "List da = new List { \"server\", \"datas0\" };\n", - "string.Join(\"\", da.Select(c => c + string.Join(\"\", Enumerable.Repeat(\",\", 10)))).Display();\n", - "string columnHeader = \"Benchmark Name, Working Set, Private Memory,RequestsPerMSec,MeanLatencyMS,Latency50thMS,Latency75thMS,Latency90thMS,Latency99thMS,HeapCount\";\n", - "string.Join(\",,\", Enumerable.Repeat(columnHeader, da.Count)).Display();" + " // Iterate over each of the runs.\n", + " const int singleBuildColumnSize = 10;\n", + " int numberOfIterations = maxIteration + 1;\n", + " string columnHeader = \"Benchmark Name,WorkingSetMB,PrivateMemoryMB,RequestsPerMSec,MeanLatencyMS,Latency50thMS,Latency75thMS,Latency90thMS,Latency99thMS\";\n", + "\n", + " int totalCountOfBenchmarks = sortedLoadInfo.First().Count;\n", + "\n", + " string first = string.Join(\"\", Enumerable.Range(0, numberOfIterations).Select(build => build + string.Join(\"\", Enumerable.Repeat(\",\", singleBuildColumnSize))));\n", + " string second = string.Join(\",,\", Enumerable.Repeat(columnHeader, numberOfIterations));\n", + "\n", + " top.AppendLine(first);\n", + " top.AppendLine(second);\n", + "\n", + " for (int benchmarkIdx = 0; benchmarkIdx < totalCountOfBenchmarks; benchmarkIdx++)\n", + " {\n", + " top.AppendLine(string.Join(\",,\", Enumerable.Range(0, numberOfIterations).Select(iteration => DisplayDetailsForABenchmark(sortedLoadInfo[iteration][benchmarkIdx]))));\n", + " }\n", + "\n", + " File.WriteAllText(Path.Combine(_basePath, $\"Difference_{s}.csv\"), top.ToString());\n", + " }\n", + " }\n", + "}" ] }, { "cell_type": "code", - "execution_count": 86, + "execution_count": 113, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -814,55 +818,35 @@ "languageId": "polyglot-notebook" } }, - "outputs": [ - { - "data": { - "text/html": [ - "
2
" - ] - }, - "metadata": {}, - "output_type": "display_data" + "outputs": [], + "source": [ + "dataManager.SaveVolatilityData(new List { \"server\", \"datas4\" });\n", + "dataManager.SaveVolatilityData(new List { \"server\", \"datas4\" }, new List { nameof(LoadInfo.MeanLatencyMS), nameof(LoadInfo.PrivateMemoryMB) });" + ] + }, + { + "cell_type": "code", + "execution_count": 116, + "metadata": { + "dotnet_interactive": { + "language": "csharp" + }, + "polyglot_notebook": { + "kernelName": "csharp" + }, + "vscode": { + "languageId": "polyglot-notebook" } - ], + }, + "outputs": [], "source": [ - "dataManager.SaveVolatilityData(new List { \"server\", \"datas4\" });" + "dataManager.SaveDifferences(\"server\", \"datas4\")\n", + "dataManager.SaveDifferences(\"server\", \"datas4\" new List { nameof(LoadInfo.WorkingSetMB), nameof(LoadInfo.Latency50thMS)})" ] }, { "cell_type": "code", - "execution_count": 85, + "execution_count": 114, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -881,25 +865,25 @@ "text": [ "The following key doesn't have the pertinent process server_2 | PlaintextMapAction - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_2\\PlaintextMapAction_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , conhost , MapAction , MoUsoCoreWorker , svchost , WmiPrvSE , PerfView , conhost , Process(2664) , Process(6300) , Process(10168) , Process(11164) , Process(12032) , Process(7088) , Process(2796) , Process(11460) , Process(8856) , Process(2200) , Process(10004) , Process(9044) , Process(10856) , Process(4032) , Process(11484)\n", "The following key doesn't have the pertinent process server_0 | PlaintextEndpoint - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_0\\PlaintextEndpoint_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , conhost , Benchmarks , PerfView , conhost , Process(2664) , Process(6972) , Process(9504) , Process(1412) , Process(9520)\n", - "The following key doesn't have the pertinent process server_0 | PlaintextMapAction - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_0\\PlaintextMapAction_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , conhost , MapAction , PerfView , conhost , Process(2664) , Process(6300) , Process(10168) , Process(11164) , Process(12032) , Process(7088) , Process(2796) , Process(11460) , Process(8856) , Process(2200) , Process(10004)\n", "The following key doesn't have the pertinent process server_1 | JsonPlatformInline - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_1\\JsonPlatformInline_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , svchost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664)\n", - "The following key doesn't have the pertinent process server_0 | PlaintextPlatformInline - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_0\\PlaintextPlatformInline_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(3776) , Process(384) , Process(7644) , Process(1124) , Process(7892) , Process(10364)\n", + "The following key doesn't have the pertinent process server_0 | PlaintextMapAction - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_0\\PlaintextMapAction_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , conhost , MapAction , PerfView , conhost , Process(2664) , Process(6300) , Process(10168) , Process(11164) , Process(12032) , Process(7088) , Process(2796) , Process(11460) , Process(8856) , Process(2200) , Process(10004)\n", "The following key doesn't have the pertinent process server_1 | JsonPlatform - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_1\\JsonPlatform_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(5780) , Process(6976) , Process(8804) , Process(9348) , Process(11844) , Process(10816) , Process(7496) , Process(8272) , Process(2000) , Process(8280) , Process(10792) , Process(4844) , Process(2728) , Process(1348) , Process(8740) , Process(9856)\n", - "The following key doesn't have the pertinent process server_0 | PlaintextPlatform - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_0\\PlaintextPlatform_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(11632) , Process(4992) , Process(12040) , Process(12192) , Process(8312) , Process(9876) , Process(7184) , Process(11176) , Process(1132) , Process(7252) , Process(3600) , Process(5080) , Process(6072) , Process(2360)\n", - "The following key doesn't have the pertinent process server_1 | Plaintext - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_1\\Plaintext_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , conhost , Benchmarks , PerfView , conhost , Process(2664) , Process(12104) , Process(12164) , Process(5364) , Process(5272) , Process(8760) , Process(4848) , Process(6820) , Process(9860) , Process(1504) , Process(840)\n", "The following key doesn't have the pertinent process server_2 | PlaintextPlatformInline - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_2\\PlaintextPlatformInline_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(5780) , Process(6976)\n", + "The following key doesn't have the pertinent process server_2 | PlaintextPlatform - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_2\\PlaintextPlatform_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(1728)\n", "The following key doesn't have the pertinent process server_1 | PlaintextEndpoint - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_1\\PlaintextEndpoint_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , conhost , Benchmarks , PerfView , conhost , Process(2664) , Process(6972) , Process(9504) , Process(1412) , Process(9520) , Process(12156) , Process(3040)\n", - "The following key doesn't have the pertinent process server_1 | PlaintextPlatformInline - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_1\\PlaintextPlatformInline_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664)\n", - "The following key doesn't have the pertinent process server_2 | PlaintextEndpoint - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_2\\PlaintextEndpoint_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , conhost , Benchmarks , PerfView , conhost , Process(2664) , Process(6972) , Process(9504) , Process(1412) , Process(9520) , Process(12156) , Process(3040) , Process(2052) , Process(3340)\n", "The following key doesn't have the pertinent process server_1 | PlaintextMapAction - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_1\\PlaintextMapAction_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , conhost , MapAction , PerfView , conhost , Process(2664) , Process(6300) , Process(10168) , Process(11164) , Process(12032) , Process(7088) , Process(2796) , Process(11460) , Process(8856) , Process(2200) , Process(10004) , Process(9044) , Process(10856)\n", - "The following key doesn't have the pertinent process server_2 | PlaintextPlatform - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_2\\PlaintextPlatform_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(1728)\n", + "The following key doesn't have the pertinent process server_1 | Plaintext - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_1\\Plaintext_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , conhost , Benchmarks , PerfView , conhost , Process(2664) , Process(12104) , Process(12164) , Process(5364) , Process(5272) , Process(8760) , Process(4848) , Process(6820) , Process(9860) , Process(1504) , Process(840)\n", + "The following key doesn't have the pertinent process server_0 | PlaintextPlatformInline - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_0\\PlaintextPlatformInline_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(3776) , Process(384) , Process(7644) , Process(1124) , Process(7892) , Process(10364)\n", "The following key doesn't have the pertinent process server_2 | JsonPlatformInline - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_2\\JsonPlatformInline_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(5152) , Process(11296)\n", - "The following key doesn't have the pertinent process server_1 | PlaintextPlatform - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_1\\PlaintextPlatform_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(11632) , Process(4992) , Process(12040) , Process(12192) , Process(8312) , Process(9876) , Process(7184) , Process(11176) , Process(1132) , Process(7252) , Process(3600) , Process(5080) , Process(6072) , Process(2360) , Process(10132) , Process(7584)\n", - "The following key doesn't have the pertinent process server_0 | JsonPlatform - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_0\\JsonPlatform_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(5780) , Process(6976) , Process(8804) , Process(9348) , Process(11844) , Process(10816) , Process(7496) , Process(8272) , Process(2000) , Process(8280) , Process(10792) , Process(4844) , Process(2728) , Process(1348)\n", - "The following key doesn't have the pertinent process server_0 | Plaintext - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_0\\Plaintext_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , conhost , Benchmarks , PerfView , conhost , Process(2664) , Process(12104) , Process(12164) , Process(5364) , Process(5272) , Process(8760) , Process(4848) , Process(6820) , Process(9860)\n", + "The following key doesn't have the pertinent process server_0 | PlaintextPlatform - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_0\\PlaintextPlatform_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(11632) , Process(4992) , Process(12040) , Process(12192) , Process(8312) , Process(9876) , Process(7184) , Process(11176) , Process(1132) , Process(7252) , Process(3600) , Process(5080) , Process(6072) , Process(2360)\n", "The following key doesn't have the pertinent process server_2 | JsonPlatform - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_2\\JsonPlatform_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664)\n", "The following key doesn't have the pertinent process server_0 | JsonPlatformInline - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_0\\JsonPlatformInline_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , svchost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(10016) , Process(10072) , Process(10068) , Process(1340) , Process(3776) , Process(3564) , Process(6756) , Process(6900) , Process(1376) , Process(11216) , Process(12212) , Process(11512) , Process(7472) , Process(11540)\n", - "The following key doesn't have the pertinent process server_2 | Plaintext - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_2\\Plaintext_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , conhost , Benchmarks , PerfView , conhost , Process(2664)\n" + "The following key doesn't have the pertinent process server_2 | PlaintextEndpoint - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_2\\PlaintextEndpoint_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , conhost , Benchmarks , PerfView , conhost , Process(2664) , Process(6972) , Process(9504) , Process(1412) , Process(9520) , Process(12156) , Process(3040) , Process(2052) , Process(3340)\n", + "The following key doesn't have the pertinent process server_0 | JsonPlatform - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_0\\JsonPlatform_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(5780) , Process(6976) , Process(8804) , Process(9348) , Process(11844) , Process(10816) , Process(7496) , Process(8272) , Process(2000) , Process(8280) , Process(10792) , Process(4844) , Process(2728) , Process(1348)\n", + "The following key doesn't have the pertinent process server_1 | PlaintextPlatformInline - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_1\\PlaintextPlatformInline_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664)\n", + "The following key doesn't have the pertinent process server_1 | PlaintextPlatform - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_1\\PlaintextPlatform_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(11632) , Process(4992) , Process(12040) , Process(12192) , Process(8312) , Process(9876) , Process(7184) , Process(11176) , Process(1132) , Process(7252) , Process(3600) , Process(5080) , Process(6072) , Process(2360) , Process(10132) , Process(7584)\n", + "The following key doesn't have the pertinent process server_2 | Plaintext - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_2\\Plaintext_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , conhost , Benchmarks , PerfView , conhost , Process(2664)\n", + "The following key doesn't have the pertinent process server_0 | Plaintext - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_0\\Plaintext_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , conhost , Benchmarks , PerfView , conhost , Process(2664) , Process(12104) , Process(12164) , Process(5364) , Process(5272) , Process(8760) , Process(4848) , Process(6820) , Process(9860)\n" ] } ], From a0047bae416ecab0e3defd02381a343222c560fc Mon Sep 17 00:00:00 2001 From: mrsharm Date: Thu, 14 Sep 2023 20:58:58 -0700 Subject: [PATCH 22/26] Incorporated feedback, detection if the process timed out and notebook improvements --- .../ASPNetBenchmark.Configuration.cs | 26 +- .../AspNetBenchmarksCommand.cs | 8 + .../Notebooks/ASPNetBenchmarkAnalysis.ipynb | 2780 ++--------------- 3 files changed, 354 insertions(+), 2460 deletions(-) diff --git a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/Configurations/ASPNetBenchmark.Configuration.cs b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/Configurations/ASPNetBenchmark.Configuration.cs index 059bfd4a2f3..75a58aa4911 100644 --- a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/Configurations/ASPNetBenchmark.Configuration.cs +++ b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/Configurations/ASPNetBenchmark.Configuration.cs @@ -2,10 +2,10 @@ { public sealed class ASPNetBenchmarksConfiguration : ConfigurationBase { - public Dictionary Runs { get; set; } - public Environment Environment { get; set; } - public BenchmarkSettings benchmark_settings { get; set; } - public Output Output { get; set; } + public Dictionary? Runs { get; set; } + public Environment? Environment { get; set; } + public BenchmarkSettings? benchmark_settings { get; set; } + public Output? Output { get; set; } } public sealed class Run : RunBase @@ -23,7 +23,7 @@ public class Environment public class BenchmarkSettings { - public string benchmark_file { get; set; } + public string? benchmark_file { get; set; } public string additional_arguments { get; set; } = ""; } @@ -35,16 +35,26 @@ public static ASPNetBenchmarksConfiguration Parse(string path) // Preconditions. if (string.IsNullOrEmpty(path) || !File.Exists(path)) { - throw new ArgumentNullException($"ASPNetBenchmarksConfigurationParser: {nameof(path)} is null/empty or doesn't exist. You must specify a valid path."); + throw new ArgumentNullException($"{nameof(ASPNetBenchmarksConfigurationParser)}: {nameof(path)} is null/empty or doesn't exist. You must specify a valid path."); } string serializedConfiguration = File.ReadAllText(path); - ASPNetBenchmarksConfiguration configuration = Common.Deserializer.Deserialize(serializedConfiguration); + + ASPNetBenchmarksConfiguration? configuration = null; + try + { + configuration = Common.Deserializer.Deserialize(serializedConfiguration); + } + + catch (Exception ex) + { + throw new ArgumentException($"{nameof(ASPNetBenchmarksConfiguration)}: Unable to parse the yaml file because of an error in the syntax. Please use the configurations under: Configuration/GCPerfSim/*.yaml in as example to ensure the file is formatted correctly. Exception: {ex.Message} \n Call Stack: {ex.StackTrace}"); + } // Checks if mandatory arguments are specified in the configuration. if (configuration == null) { - throw new ArgumentNullException($"ASPNetBnechmarksConfigurationParser: {nameof(configuration)} is null. Check the syntax of the configuration."); + throw new ArgumentNullException($"{nameof(ASPNetBenchmarksConfigurationParser)}: {nameof(configuration)} is null. Check the syntax of the configuration."); } return configuration; diff --git a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksCommand.cs b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksCommand.cs index d49c80f387a..6ace4ce4ebe 100644 --- a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksCommand.cs +++ b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksCommand.cs @@ -116,6 +116,14 @@ public static AspNetBenchmarkResults RunASPNetBenchmarks(ASPNetBenchmarksConfigu crankProcess.BeginErrorReadLine(); bool exited = crankProcess.WaitForExit((int)configuration.Environment.default_max_seconds * 1000); + + // If the process still hasn't exited, it has timed out from the crank side of things and we'll need to rerun this benchmark. + if (!crankProcess.HasExited) + { + AnsiConsole.MarkupLine($"[red bold] ASP.NET Benchmark timed out for: {configuration.Name} {run.Key} {c.Key} [/]"); + continue; + } + exitCode = crankProcess.ExitCode; } diff --git a/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb b/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb index 1bdf5454ea8..bdf7e33b7ab 100644 --- a/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb +++ b/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb @@ -12,7 +12,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": null, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -24,17 +24,7 @@ "languageId": "polyglot-notebook" } }, - "outputs": [ - { - "data": { - "text/html": [ - "
Installed Packages
  • Microsoft.Data.Analysis, 0.19.1
  • Microsoft.Diagnostics.Tracing.TraceEvent, 3.0.1
  • Microsoft.Playwright, 1.16.0
  • Newtonsoft.Json, 13.0.3
  • XPlot.Plotly, 4.0.6
  • XPlot.Plotly.Interactive, 4.0.7
  • YamlDotnet, 13.3.1
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "#r \"nuget: Microsoft.Diagnostics.Tracing.TraceEvent, 3.0.1\"\n", "#r \"nuget: YamlDotnet\"\n", @@ -66,7 +56,7 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": null, "metadata": { "dotnet_interactive": { "language": "pwsh" @@ -78,31 +68,14 @@ "languageId": "polyglot-notebook" } }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "MSBuild version 17.8.0-preview-23367-03+0ff2a83e9 for .NET\n", - " Determining projects to restore...\n", - " All projects are up-to-date for restore.\n", - " GC.Analysis.API -> C:\\Users\\musharm\\source\\repos\\performance\\artifacts\\bin\\GC.Analysis.API\\Debug\\net6.0\\GC.Analysis.API.dll\n", - "\n", - "Build succeeded.\n", - " 0 Warning(s)\n", - " 0 Error(s)\n", - "\n", - "Time Elapsed 00:00:00.97\n" - ] - } - ], + "outputs": [], "source": [ - "dotnet build -c Debug \"..\\GC.Analysis.API\"" + "dotnet build -c Release \"..\\GC.Analysis.API\"" ] }, { "cell_type": "code", - "execution_count": 10, + "execution_count": null, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -116,6 +89,7 @@ }, "outputs": [], "source": [ + "// TODO: Ensure you are pointing to the right artifacts folder.\n", "#r \"C:\\performance\\artifacts\\bin\\GC.Infrastructure\\Debug\\net7.0\\GC.Analysis.API.dll\"\n", "\n", "using GC.Analysis.API;" @@ -133,7 +107,7 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": null, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -164,7 +138,7 @@ " public GCProcessData Data {get;set;}\n", " public GCProcessData? Data2 {get;set;}\n", " public string CommandLine {get;set;}\n", - " public int NumberOfHeapCountSwitches {get;set;} = 0;\n", + " public double NumberOfHeapCountSwitches {get;set;} = 0;\n", " public string Benchmark {get; set;}\n", " public string Id {get; set;}\n", " public double TotalSuspensionTimeMSec {get;set;} = double.NaN;\n", @@ -173,6 +147,7 @@ " public double MeanHeapSizeBeforeMB {get; set;} = double.NaN;\n", " public double MaxHeapSizeMB {get; set;} = double.NaN;\n", " public double TotalAllocationsMB {get;set;} = double.NaN;\n", + " public double GCScore {get;set;} = double.NaN;\n", " public string TracePath {get; set;}\n", " public string ProcessName {get;set;}\n", "}\n", @@ -194,7 +169,7 @@ }, { "cell_type": "code", - "execution_count": 112, + "execution_count": null, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -237,7 +212,7 @@ " }\n", " }\n", "\n", - " public static double DeltaPercent (double baseline, double comparand) => (comparand - baseline) / baseline * 100;\n", + " public static double DeltaPercent (double baseline, double comparand) => Math.Round((comparand - baseline) / baseline * 100, 2);\n", "\n", " public LoadInfo GetComparison(LoadInfo baseline, LoadInfo comparand)\n", " {\n", @@ -251,6 +226,8 @@ " Latency99thMS = DeltaPercent(baseline.Latency99thMS, comparand.Latency99thMS), \n", " MeanLatencyMS = DeltaPercent(baseline.MeanLatencyMS, comparand.MeanLatencyMS),\n", " RequestsPerMSec = DeltaPercent(baseline.RequestsPerMSec, comparand.RequestsPerMSec),\n", + " GCScore = DeltaPercent(baseline.GCScore, comparand.GCScore),\n", + " NumberOfHeapCountSwitches = DeltaPercent(baseline.NumberOfHeapCountSwitches, comparand.NumberOfHeapCountSwitches),\n", " Data = baseline.Data,\n", " Data2 = comparand.Data,\n", " Run = $\"{baseline.Run} vs. {comparand.Run}\",\n", @@ -259,6 +236,64 @@ " };\n", " }\n", "\n", + " public void SummarizeResults(Dictionary info = null)\n", + " {\n", + " if (info == null)\n", + " {\n", + " info = _data;\n", + " }\n", + "\n", + " Console.WriteLine(\"{0,10} | {1,35} | {2, 5} | {3, 5:0.00} | {4, 5} | {5, 5:0.00} | {6, 5} | {7, 5:0.00} | {8, 5} | {9, 5:0.00} | {10, 10:0.00} | {11, 10:0.00} | {12, 5:0.00} | {13, 10:0.00} | {14, 10:0.00} |\", \n", + " \"run\", \"benchmark\", \"gen0\", \"pause\", \"gen1\", \"pause\", \"ngc2\", \"pause\", \"bgc\", \"pause\", \"allocMB\", \"alloc/gc\", \"pct\", \"peakMB\", \"meanMB\");\n", + " Console.WriteLine(\"{0}\", new String('-', 174));\n", + "\n", + " foreach (var kvp in info)\n", + " {\n", + " List gcs = kvp.Value?.Data?.GCs;\n", + " if (gcs == null || gcs.Count == 0)\n", + " {\n", + " continue;\n", + " }\n", + "\n", + " int[] gc_counts = new int[4];\n", + " double[] gc_pauses = new double[4];\n", + " for (int i = 0; i < gcs.Count; i++)\n", + " {\n", + " TraceGC gc = gcs[i];\n", + " if (gc.Generation < 2)\n", + " {\n", + " gc_counts[gc.Generation]++;\n", + " gc_pauses[gc.Generation] += gc.PauseDurationMSec;\n", + " }\n", + " else\n", + " {\n", + " if (gc.Type == GCType.BackgroundGC)\n", + " {\n", + " gc_counts[3]++;\n", + " gc_pauses[3] += gc.PauseDurationMSec;\n", + " }\n", + " else\n", + " {\n", + " gc_counts[2]++;\n", + " gc_pauses[2] += gc.PauseDurationMSec;\n", + " }\n", + " }\n", + " }\n", + " \n", + " for (int i = 0; i < 4; i++)\n", + " {\n", + " if (gc_counts[i] > 0)\n", + " {\n", + " gc_pauses[i] /= gc_counts[i];\n", + " }\n", + " }\n", + " \n", + " Console.WriteLine(\"{0,10} | {1,35} | {2, 5} | {3, 5:0.00} | {4, 5} | {5, 5:0.00} | {6, 5} | {7, 5:0.00} | {8, 5} | {9, 5:0.00} | {10, 10:0.00} | {11, 10:0.00} | {12, 5:0.00} | {13, 10:0.00} | {14, 10:0.00} |\",\n", + " kvp.Value.Run, kvp.Value.Benchmark, gc_counts[0], gc_pauses[0], gc_counts[1], gc_pauses[1], gc_counts[2], gc_pauses[2], gc_counts[3], gc_pauses[3],\n", + " kvp.Value.Data.Stats.TotalAllocatedMB, (kvp.Value.Data.Stats.TotalAllocatedMB / gcs.Count), kvp.Value.Data.Stats.GetGCPauseTimePercentage(), kvp.Value.Data.Stats.MaxSizePeakMB, kvp.Value.Data.Stats.MeanSizePeakMB);\n", + " }\n", + " }\n", + "\n", " public Dictionary? GetAllBenchmarksForRun(string run)\n", " {\n", " if (!_runToBenchmarkData.TryGetValue(run, out var benchmarksForRun))\n", @@ -459,12 +494,11 @@ " f.MeanHeapSizeBeforeMB = data.Stats.MeanSizePeakMB;\n", " f.MaxHeapSizeMB = data.Stats.MaxSizePeakMB;\n", " f.PercentTimeInGC = (data.GCs.Sum(gc => gc.PauseDurationMSec - gc.SuspendDurationMSec) / (data.Stats.ProcessDuration) ) * 100;\n", - " //f.MeanTimeTakeToChangeHeap = \n", - " //per GC change.\n", " f.TracePath = data.Parent.TraceLogPath;\n", " f.TotalAllocationsMB = data.Stats.TotalAllocatedMB;\n", " f.CommandLine = data.CommandLine;\n", " f.PercentPauseTimeInGC = data.Stats.GetGCPauseTimePercentage();\n", + " f.GCScore = (f.MaxHeapSizeMB / f.PercentPauseTimeInGC);\n", " f.ProcessId = data.ProcessID;\n", " f.Data = data;\n", " f.ProcessName = data.ProcessName;\n", @@ -612,7 +646,7 @@ " };\n", " }\n", " }\n", - "\n", + " \n", " Dictionary> sortedPerBuildVolatility = new();\n", "\n", " string DisplayDetailsForABenchmark(BenchmarkVolatilityData val) =>\n", @@ -625,35 +659,45 @@ " foreach (var s in sortingCriteria)\n", " {\n", " Func, double> sortingFunctor = null;\n", + " Func selectionFunctor = null;\n", "\n", " switch (s)\n", " {\n", - " case nameof(LoadInfo.WorkingSetMB):\n", + " case nameof(BenchmarkVolatilityData.WorkingSetMB):\n", " sortingFunctor = (data) => data.Value.WorkingSetMB;\n", + " selectionFunctor = (data) => data.WorkingSetMB;\n", " break;\n", - " case nameof(LoadInfo.PrivateMemoryMB):\n", + " case nameof(BenchmarkVolatilityData.PrivateMemoryMB):\n", " sortingFunctor = (data) => data.Value.PrivateMemoryMB;\n", + " selectionFunctor = (data) => data.PrivateMemoryMB;\n", " break;\n", - " case nameof(LoadInfo.RequestsPerMSec):\n", + " case nameof(BenchmarkVolatilityData.RequestsPerMSec):\n", " sortingFunctor = (data) => data.Value.RequestsPerMSec;\n", + " selectionFunctor = (data) => data.RequestsPerMSec;\n", " break;\n", - " case nameof(LoadInfo.MeanLatencyMS):\n", + " case nameof(BenchmarkVolatilityData.MeanLatencyMS):\n", " sortingFunctor = (data) => data.Value.MeanLatencyMS;\n", + " selectionFunctor = (data) => data.MeanLatencyMS;\n", " break;\n", - " case nameof(LoadInfo.Latency50thMS):\n", + " case nameof(BenchmarkVolatilityData.Latency50thMS):\n", " sortingFunctor = (data) => data.Value.Latency50thMS;\n", + " selectionFunctor = (data) => data.Latency50thMS;\n", " break;\n", - " case nameof(LoadInfo.Latency75thMS):\n", + " case nameof(BenchmarkVolatilityData.Latency75thMS):\n", " sortingFunctor = (data) => data.Value.Latency75thMS;\n", + " selectionFunctor = (data) => data.Latency75thMS;\n", " break;\n", - " case nameof(LoadInfo.Latency90thMS):\n", + " case nameof(BenchmarkVolatilityData.Latency90thMS):\n", " sortingFunctor = (data) => data.Value.Latency90thMS;\n", + " selectionFunctor = (data) => data.Latency90thMS;\n", " break;\n", - " case nameof(LoadInfo.Latency99thMS):\n", + " case nameof(BenchmarkVolatilityData.Latency99thMS):\n", " sortingFunctor = (data) => data.Value.Latency99thMS;\n", + " selectionFunctor = (data) => data.Latency99thMS;\n", " break;\n", " default:\n", " sortingFunctor = (data) => data.Value.PrivateMemoryMB;\n", + " selectionFunctor = (data) => data.PrivateMemoryMB;\n", " break;\n", " }\n", "\n", @@ -670,6 +714,7 @@ " int numberOfBuilds = buildToBenchmarkVolatilityData.Count;\n", " string columnHeader = \"Benchmark Name,WorkingSetMB,PrivateMemoryMB,RequestsPerMSec,MeanLatencyMS,Latency50thMS,Latency75thMS,Latency90thMS,Latency99thMS,HeapCount\";\n", "\n", + " // Assumption: the same benchmarks are present for all runs.\n", " int totalCountOfBenchmarks = buildToBenchmarkVolatilityData.First().Value.Count;\n", "\n", " string first = string.Join(\",\", namesOfBuilds.Select(build => build + string.Join(\"\", Enumerable.Repeat(\",\", singleBuildColumnSize))));\n", @@ -684,6 +729,33 @@ " }\n", "\n", " File.WriteAllText(Path.Combine(_basePath, $\"Volatility_{s}.csv\"), top.ToString());\n", + "\n", + " // Chart the sorted % Vol Results.\n", + "\n", + " List scatters = new();\n", + "\n", + " var layout = new Layout.Layout\n", + " {\n", + " xaxis = new Xaxis { title = \"Benchmark Name\" },\n", + " yaxis = new Yaxis { title = \"Metric Volatility Score\" },\n", + " width = 1500,\n", + " title = $\"Volatility Scores Sorted by {s} for {sortedPerBuildVolatility.First().Key}\"\n", + " };\n", + "\n", + " foreach (var b in sortedPerBuildVolatility)\n", + " {\n", + " var scatter = new Scatter\n", + " {\n", + " x = b.Value.Select(s => s.Benchmark),\n", + " y = b.Value.Select(selectionFunctor),\n", + " mode = \"markers\",\n", + " name = b.Key,\n", + " };\n", + "\n", + " scatters.Add(scatter);\n", + " }\n", + "\n", + " Chart.Plot(scatters, layout).Display();\n", " }\n", " }\n", "\n", @@ -709,6 +781,10 @@ " maxIteration = System.Math.Max(iteration, maxIteration);\n", " }\n", "\n", + " // Compute Average Diff\n", + " // Build to Benchmark -> Data\n", + " Dictionary> averageData = new();\n", + "\n", " for (int i = 0; i <= maxIteration; i++)\n", " {\n", " string baselineIteration = baseline + \"_\" + i.ToString();\n", @@ -726,10 +802,106 @@ "\n", " benchmarks.Add(GetComparison(baselineIterationRuns[b.Key], comparandIterationRuns[b.Key]));\n", " }\n", + "\n", + " if (!averageData.TryGetValue(baseline, out var bVal))\n", + " {\n", + " averageData[baseline] = bVal = new();\n", + " foreach (var benchmark in baselineIterationRuns)\n", + " {\n", + " bVal[benchmark.Key] = new LoadInfo\n", + " {\n", + " Benchmark = benchmark.Key,\n", + " WorkingSetMB = benchmark.Value.WorkingSetMB,\n", + " PrivateMemoryMB = benchmark.Value.PrivateMemoryMB,\n", + " RequestsPerMSec = benchmark.Value.RequestsPerMSec,\n", + " MeanLatencyMS = benchmark.Value.MeanLatencyMS,\n", + " Latency50thMS = benchmark.Value.Latency50thMS, \n", + " Latency75thMS = benchmark.Value.Latency75thMS,\n", + " Latency90thMS = benchmark.Value.Latency90thMS,\n", + " Latency99thMS = benchmark.Value.Latency99thMS,\n", + " NumberOfHeapCountSwitches = benchmark.Value.NumberOfHeapCountSwitches,\n", + " };\n", + " }\n", + " }\n", + "\n", + " else\n", + " {\n", + " foreach (var benchmark in baselineIterationRuns)\n", + " {\n", + " var data = bVal[benchmark.Key];\n", + " data.Benchmark = benchmark.Key;\n", + " data.WorkingSetMB += benchmark.Value.WorkingSetMB;\n", + " data.PrivateMemoryMB += benchmark.Value.PrivateMemoryMB;\n", + " data.RequestsPerMSec += benchmark.Value.RequestsPerMSec;\n", + " data.MeanLatencyMS += benchmark.Value.MeanLatencyMS;\n", + " data.Latency50thMS += benchmark.Value.Latency50thMS; \n", + " data.Latency75thMS += benchmark.Value.Latency75thMS;\n", + " data.Latency90thMS += benchmark.Value.Latency90thMS;\n", + " data.Latency99thMS += benchmark.Value.Latency99thMS;\n", + " data.NumberOfHeapCountSwitches += benchmark.Value.NumberOfHeapCountSwitches;\n", + " }\n", + " }\n", + "\n", + " if (!averageData.TryGetValue(comparand, out var cVal))\n", + " {\n", + " averageData[comparand] = cVal = new();\n", + " foreach (var benchmark in comparandIterationRuns)\n", + " {\n", + " cVal[benchmark.Key] = new LoadInfo\n", + " {\n", + " Benchmark = benchmark.Key,\n", + " WorkingSetMB = benchmark.Value.WorkingSetMB,\n", + " PrivateMemoryMB = benchmark.Value.PrivateMemoryMB,\n", + " RequestsPerMSec = benchmark.Value.RequestsPerMSec,\n", + " MeanLatencyMS = benchmark.Value.MeanLatencyMS,\n", + " Latency50thMS = benchmark.Value.Latency50thMS, \n", + " Latency75thMS = benchmark.Value.Latency75thMS,\n", + " Latency90thMS = benchmark.Value.Latency90thMS,\n", + " Latency99thMS = benchmark.Value.Latency99thMS,\n", + " NumberOfHeapCountSwitches = benchmark.Value.NumberOfHeapCountSwitches,\n", + " };\n", + " }\n", + " }\n", + "\n", + " else\n", + " {\n", + " foreach (var benchmark in comparandIterationRuns)\n", + " {\n", + " var data = cVal[benchmark.Key];\n", + " data.Benchmark = benchmark.Key;\n", + " data.WorkingSetMB += benchmark.Value.WorkingSetMB;\n", + " data.PrivateMemoryMB += benchmark.Value.PrivateMemoryMB;\n", + " data.RequestsPerMSec += benchmark.Value.RequestsPerMSec;\n", + " data.MeanLatencyMS += benchmark.Value.MeanLatencyMS;\n", + " data.Latency50thMS += benchmark.Value.Latency50thMS; \n", + " data.Latency75thMS += benchmark.Value.Latency75thMS;\n", + " data.Latency90thMS += benchmark.Value.Latency90thMS;\n", + " data.Latency99thMS += benchmark.Value.Latency99thMS;\n", + " data.NumberOfHeapCountSwitches += benchmark.Value.NumberOfHeapCountSwitches;\n", + " }\n", + " }\n", + " }\n", + "\n", + " foreach (var benchmark in _benchmarkToRunData)\n", + " {\n", + " foreach (var build in averageData)\n", + " {\n", + " var data = build.Value[benchmark.Key];\n", + " data.Benchmark = benchmark.Key;\n", + " data.WorkingSetMB /= (maxIteration + 1); \n", + " data.PrivateMemoryMB /= (maxIteration + 1);\n", + " data.RequestsPerMSec /= (maxIteration + 1);\n", + " data.MeanLatencyMS /= (maxIteration + 1);\n", + " data.Latency50thMS /= (maxIteration + 1);\n", + " data.Latency75thMS /= (maxIteration + 1);\n", + " data.Latency90thMS /= (maxIteration + 1);\n", + " data.Latency99thMS /= (maxIteration + 1);\n", + " data.NumberOfHeapCountSwitches /= (maxIteration + 1);\n", + " }\n", " }\n", "\n", " string DisplayDetailsForABenchmark(LoadInfo val) =>\n", - " $\"{val.Benchmark},{val.WorkingSetMB},{val.PrivateMemoryMB},{val.RequestsPerMSec},{val.MeanLatencyMS},{val.Latency50thMS},{val.Latency75thMS},{val.Latency90thMS},{val.Latency99thMS}\";\n", + " $\"{val.Benchmark},{val.WorkingSetMB},{val.PrivateMemoryMB},{val.RequestsPerMSec},{val.MeanLatencyMS},{val.Latency50thMS},{val.Latency75thMS},{val.Latency90thMS},{val.Latency99thMS},{val.NumberOfHeapCountSwitches}\";\n", "\n", " if (sortingCriteria == null)\n", " {\n", @@ -739,35 +911,49 @@ " foreach (var s in sortingCriteria)\n", " {\n", " Func sortingFunctor = null;\n", + " Func, double> selectionFunctor = null;\n", "\n", " switch (s)\n", " {\n", " case nameof(LoadInfo.WorkingSetMB):\n", " sortingFunctor = (data) => data.WorkingSetMB;\n", + " selectionFunctor = (data) => data.Value.WorkingSetMB;\n", " break;\n", " case nameof(LoadInfo.PrivateMemoryMB):\n", " sortingFunctor = (data) => data.PrivateMemoryMB;\n", + " selectionFunctor = (data) => data.Value.PrivateMemoryMB;\n", " break;\n", " case nameof(LoadInfo.RequestsPerMSec):\n", " sortingFunctor = (data) => data.RequestsPerMSec;\n", + " selectionFunctor = (data) => data.Value.RequestsPerMSec;\n", " break;\n", " case nameof(LoadInfo.MeanLatencyMS):\n", " sortingFunctor = (data) => data.MeanLatencyMS;\n", + " selectionFunctor = (data) => data.Value.MeanLatencyMS;\n", " break;\n", " case nameof(LoadInfo.Latency50thMS):\n", " sortingFunctor = (data) => data.Latency50thMS;\n", + " selectionFunctor = (data) => data.Value.Latency50thMS;\n", " break;\n", " case nameof(LoadInfo.Latency75thMS):\n", " sortingFunctor = (data) => data.Latency75thMS;\n", + " selectionFunctor = (data) => data.Value.Latency75thMS;\n", " break;\n", " case nameof(LoadInfo.Latency90thMS):\n", " sortingFunctor = (data) => data.Latency90thMS;\n", + " selectionFunctor = (data) => data.Value.Latency90thMS;\n", " break;\n", " case nameof(LoadInfo.Latency99thMS):\n", " sortingFunctor = (data) => data.Latency99thMS;\n", + " selectionFunctor = (data) => data.Value.Latency99thMS;\n", + " break;\n", + " case nameof(LoadInfo.NumberOfHeapCountSwitches):\n", + " sortingFunctor = (data) => data.NumberOfHeapCountSwitches;\n", + " selectionFunctor = (data) => data.Value.NumberOfHeapCountSwitches;\n", " break;\n", " default:\n", " sortingFunctor = (data) => data.PrivateMemoryMB;\n", + " selectionFunctor = (data) => data.Value.PrivateMemoryMB;\n", " break;\n", " }\n", "\n", @@ -777,28 +963,88 @@ " sortedLoadInfo.Add(iteration.Value.OrderByDescending(sortingFunctor).ToList());\n", " }\n", "\n", + " //sortedLoadInfo.Add()\n", + "\n", " // Create CSV.\n", " StringBuilder top = new();\n", "\n", " // Iterate over each of the runs.\n", - " const int singleBuildColumnSize = 10;\n", + " const int singleBuildColumnSize = 11;\n", " int numberOfIterations = maxIteration + 1;\n", - " string columnHeader = \"Benchmark Name,WorkingSetMB,PrivateMemoryMB,RequestsPerMSec,MeanLatencyMS,Latency50thMS,Latency75thMS,Latency90thMS,Latency99thMS\";\n", + " string columnHeader = \"Benchmark Name,WorkingSetMB,PrivateMemoryMB,RequestsPerMSec,MeanLatencyMS,Latency50thMS,Latency75thMS,Latency90thMS,Latency99thMS,HeapCount\";\n", "\n", " int totalCountOfBenchmarks = sortedLoadInfo.First().Count;\n", "\n", " string first = string.Join(\"\", Enumerable.Range(0, numberOfIterations).Select(build => build + string.Join(\"\", Enumerable.Repeat(\",\", singleBuildColumnSize))));\n", " string second = string.Join(\",,\", Enumerable.Repeat(columnHeader, numberOfIterations));\n", "\n", + " // Add the average diff.\n", + " first += \"Average Diff %\" + string.Join(\"\", Enumerable.Repeat(\",\", singleBuildColumnSize));\n", + " second += \",,\" + string.Join(\",,\", columnHeader);\n", + "\n", " top.AppendLine(first);\n", " top.AppendLine(second);\n", "\n", " for (int benchmarkIdx = 0; benchmarkIdx < totalCountOfBenchmarks; benchmarkIdx++)\n", " {\n", - " top.AppendLine(string.Join(\",,\", Enumerable.Range(0, numberOfIterations).Select(iteration => DisplayDetailsForABenchmark(sortedLoadInfo[iteration][benchmarkIdx]))));\n", + " string benchmarkData = string.Join(\",,\", Enumerable.Range(0, numberOfIterations).Select(iteration => DisplayDetailsForABenchmark(sortedLoadInfo[iteration][benchmarkIdx])));\n", + "\n", + " string benchmarkName = sortedLoadInfo[0][benchmarkIdx].Benchmark;\n", + "\n", + " LoadInfo baselineAverage = averageData[baseline][benchmarkName];\n", + " LoadInfo comparandAverage = averageData[comparand][benchmarkName];\n", + " LoadInfo averageDiff = GetComparison(baselineAverage, comparandAverage);\n", + "\n", + " benchmarkData += $\",,{DisplayDetailsForABenchmark(averageDiff)}\";\n", + "\n", + " top.AppendLine(benchmarkData);\n", " }\n", "\n", " File.WriteAllText(Path.Combine(_basePath, $\"Difference_{s}.csv\"), top.ToString());\n", + "\n", + " var layout = new Layout.Layout\n", + " {\n", + " xaxis = new Xaxis { title = \"Benchmark Name\" },\n", + " yaxis = new Yaxis { title = $\"{s}\" },\n", + " width = 1500,\n", + " title = $\"Raw values of {s} for Runs\"\n", + " };\n", + "\n", + " List scatters = new();\n", + "\n", + " const int baseColor = 150;\n", + "\n", + " for (int iterationIdx = 0; iterationIdx <= maxIteration; iterationIdx++)\n", + " {\n", + " string baselineIteration = baseline + \"_\" + iterationIdx.ToString();\n", + " string comparandIteration = comparand + \"_\" + iterationIdx.ToString();\n", + "\n", + " Dictionary baselineData = _runToBenchmarkData[baselineIteration];\n", + " Dictionary comparandData = _runToBenchmarkData[comparandIteration];\n", + "\n", + " Scatter baselineScatter = new()\n", + " {\n", + " x = baselineData.Select(b => b.Key),\n", + " y = baselineData.Select(selectionFunctor),\n", + " name = $\"{baselineIteration} - {s}\",\n", + " mode = \"markers\",\n", + " marker = new Marker { color = $\"rgb({baseColor + iterationIdx * 50}, 0, 0)\" } \n", + " };\n", + "\n", + " Scatter comparandScatter = new()\n", + " {\n", + " x = comparandData.Select(b => b.Key),\n", + " y = comparandData.Select(selectionFunctor),\n", + " name = $\"{comparandIteration} - {s}\",\n", + " mode = \"markers\",\n", + " marker = new Marker { color = $\"rgb(0, 0, {baseColor + iterationIdx * 50})\" } \n", + " };\n", + "\n", + " scatters.Add(baselineScatter);\n", + " scatters.Add(comparandScatter);\n", + " }\n", + "\n", + " Chart.Plot(scatters, layout).Display();\n", " }\n", " }\n", "}" @@ -806,7 +1052,7 @@ }, { "cell_type": "code", - "execution_count": 113, + "execution_count": null, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -820,13 +1066,13 @@ }, "outputs": [], "source": [ - "dataManager.SaveVolatilityData(new List { \"server\", \"datas4\" });\n", - "dataManager.SaveVolatilityData(new List { \"server\", \"datas4\" }, new List { nameof(LoadInfo.MeanLatencyMS), nameof(LoadInfo.PrivateMemoryMB) });" + "string basePath = @\"C:\\Traces\\GCTraces\\DATAS_5_Fixed\";\n", + "var dataManager = new DataManager(basePath);" ] }, { "cell_type": "code", - "execution_count": 116, + "execution_count": null, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -840,13 +1086,12 @@ }, "outputs": [], "source": [ - "dataManager.SaveDifferences(\"server\", \"datas4\")\n", - "dataManager.SaveDifferences(\"server\", \"datas4\" new List { nameof(LoadInfo.WorkingSetMB), nameof(LoadInfo.Latency50thMS)})" + "dataManager.SummarizeResults()" ] }, { "cell_type": "code", - "execution_count": 114, + "execution_count": null, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -858,43 +1103,14 @@ "languageId": "polyglot-notebook" } }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "The following key doesn't have the pertinent process server_2 | PlaintextMapAction - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_2\\PlaintextMapAction_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , conhost , MapAction , MoUsoCoreWorker , svchost , WmiPrvSE , PerfView , conhost , Process(2664) , Process(6300) , Process(10168) , Process(11164) , Process(12032) , Process(7088) , Process(2796) , Process(11460) , Process(8856) , Process(2200) , Process(10004) , Process(9044) , Process(10856) , Process(4032) , Process(11484)\n", - "The following key doesn't have the pertinent process server_0 | PlaintextEndpoint - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_0\\PlaintextEndpoint_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , conhost , Benchmarks , PerfView , conhost , Process(2664) , Process(6972) , Process(9504) , Process(1412) , Process(9520)\n", - "The following key doesn't have the pertinent process server_1 | JsonPlatformInline - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_1\\JsonPlatformInline_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , svchost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664)\n", - "The following key doesn't have the pertinent process server_0 | PlaintextMapAction - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_0\\PlaintextMapAction_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , conhost , MapAction , PerfView , conhost , Process(2664) , Process(6300) , Process(10168) , Process(11164) , Process(12032) , Process(7088) , Process(2796) , Process(11460) , Process(8856) , Process(2200) , Process(10004)\n", - "The following key doesn't have the pertinent process server_1 | JsonPlatform - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_1\\JsonPlatform_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(5780) , Process(6976) , Process(8804) , Process(9348) , Process(11844) , Process(10816) , Process(7496) , Process(8272) , Process(2000) , Process(8280) , Process(10792) , Process(4844) , Process(2728) , Process(1348) , Process(8740) , Process(9856)\n", - "The following key doesn't have the pertinent process server_2 | PlaintextPlatformInline - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_2\\PlaintextPlatformInline_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(5780) , Process(6976)\n", - "The following key doesn't have the pertinent process server_2 | PlaintextPlatform - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_2\\PlaintextPlatform_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(1728)\n", - "The following key doesn't have the pertinent process server_1 | PlaintextEndpoint - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_1\\PlaintextEndpoint_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , conhost , Benchmarks , PerfView , conhost , Process(2664) , Process(6972) , Process(9504) , Process(1412) , Process(9520) , Process(12156) , Process(3040)\n", - "The following key doesn't have the pertinent process server_1 | PlaintextMapAction - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_1\\PlaintextMapAction_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , conhost , MapAction , PerfView , conhost , Process(2664) , Process(6300) , Process(10168) , Process(11164) , Process(12032) , Process(7088) , Process(2796) , Process(11460) , Process(8856) , Process(2200) , Process(10004) , Process(9044) , Process(10856)\n", - "The following key doesn't have the pertinent process server_1 | Plaintext - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_1\\Plaintext_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , conhost , Benchmarks , PerfView , conhost , Process(2664) , Process(12104) , Process(12164) , Process(5364) , Process(5272) , Process(8760) , Process(4848) , Process(6820) , Process(9860) , Process(1504) , Process(840)\n", - "The following key doesn't have the pertinent process server_0 | PlaintextPlatformInline - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_0\\PlaintextPlatformInline_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(3776) , Process(384) , Process(7644) , Process(1124) , Process(7892) , Process(10364)\n", - "The following key doesn't have the pertinent process server_2 | JsonPlatformInline - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_2\\JsonPlatformInline_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(5152) , Process(11296)\n", - "The following key doesn't have the pertinent process server_0 | PlaintextPlatform - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_0\\PlaintextPlatform_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(11632) , Process(4992) , Process(12040) , Process(12192) , Process(8312) , Process(9876) , Process(7184) , Process(11176) , Process(1132) , Process(7252) , Process(3600) , Process(5080) , Process(6072) , Process(2360)\n", - "The following key doesn't have the pertinent process server_2 | JsonPlatform - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_2\\JsonPlatform_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664)\n", - "The following key doesn't have the pertinent process server_0 | JsonPlatformInline - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_0\\JsonPlatformInline_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , svchost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(10016) , Process(10072) , Process(10068) , Process(1340) , Process(3776) , Process(3564) , Process(6756) , Process(6900) , Process(1376) , Process(11216) , Process(12212) , Process(11512) , Process(7472) , Process(11540)\n", - "The following key doesn't have the pertinent process server_2 | PlaintextEndpoint - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_2\\PlaintextEndpoint_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , conhost , Benchmarks , PerfView , conhost , Process(2664) , Process(6972) , Process(9504) , Process(1412) , Process(9520) , Process(12156) , Process(3040) , Process(2052) , Process(3340)\n", - "The following key doesn't have the pertinent process server_0 | JsonPlatform - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_0\\JsonPlatform_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(5780) , Process(6976) , Process(8804) , Process(9348) , Process(11844) , Process(10816) , Process(7496) , Process(8272) , Process(2000) , Process(8280) , Process(10792) , Process(4844) , Process(2728) , Process(1348)\n", - "The following key doesn't have the pertinent process server_1 | PlaintextPlatformInline - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_1\\PlaintextPlatformInline_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664)\n", - "The following key doesn't have the pertinent process server_1 | PlaintextPlatform - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_1\\PlaintextPlatform_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , conhost , conhost , dotnet , conhost , dotnet , dotnet , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , dotnet , dotnet , dotnet , conhost , conhost , conhost , conhost , PlatformBenchmarks , PerfView , conhost , Process(2664) , Process(11632) , Process(4992) , Process(12040) , Process(12192) , Process(8312) , Process(9876) , Process(7184) , Process(11176) , Process(1132) , Process(7252) , Process(3600) , Process(5080) , Process(6072) , Process(2360) , Process(10132) , Process(7584)\n", - "The following key doesn't have the pertinent process server_2 | Plaintext - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_2\\Plaintext_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , conhost , Benchmarks , PerfView , conhost , Process(2664)\n", - "The following key doesn't have the pertinent process server_0 | Plaintext - C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\\server_0\\Plaintext_Windows.gc.etl.zip: PerfView , Idle , System , Registry , smss , csrss , wininit , csrss , winlogon , services , lsass , svchost , fontdrvhost , fontdrvhost , svchost , svchost , dwm , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , spoolsv , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , svchost , MsMpEng , svchost , svchost , svchost , AggregatorHost , svchost , svchost , svchost , svchost , sihost , svchost , svchost , cmd , svchost , svchost , ctfmon , svchost , svchost , taskhostw , explorer , conhost , TextInputHost , StartMenuExperienceHost , RuntimeBroker , SearchApp , RuntimeBroker , RuntimeBroker , dotnet , svchost , ShellExperienceHost , RuntimeBroker , crank-agent , svchost , msdtc , svchost , svchost , svchost , svchost , svchost , dotnet , conhost , svchost , svchost , dotnet , conhost , conhost , Benchmarks , PerfView , conhost , Process(2664) , Process(12104) , Process(12164) , Process(5364) , Process(5272) , Process(8760) , Process(4848) , Process(6820) , Process(9860)\n" - ] - } - ], + "outputs": [], "source": [ - "string basePath = @\"C:\\Traces\\GCTraces\\DATAS4_Runs_Alt\";\n", - "var dataManager = new DataManager(basePath);" + "dataManager.SaveVolatilityData(new List { \"baseline\", \"run\" }, new List { nameof(LoadInfo.PrivateMemoryMB), nameof(LoadInfo.RequestsPerMSec )});" ] }, { "cell_type": "code", - "execution_count": 7, + "execution_count": null, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -906,2366 +1122,26 @@ "languageId": "polyglot-notebook" } }, - "outputs": [ - { - "data": { - "text/html": [ - "
keyvalue
datas_3 | CachingPlatform
Submission#4+LoadInfo
WorkingSetMB
98
PrivateMemoryMB
63
Latency50thMS
0.56
Latency75thMS
0.61
Latency90thMS
0.75
Latency99thMS
5.97
MeanLatencyMS
0.73
ProcessId
12188
RequestsPerMSec
429.217
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
PlatformBenchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\mbvjdesc.rdk\\src\\BenchmarksApps\\TechEmpower\\PlatformBenchmarks\\published\\PlatformBenchmarks.exe"  
ProcessID
12188
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.293928
PromotedMB
1.031904
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
722.815
DurationMSec
4.088899999999967
PauseDurationMSec
4.304399999999987
SuspendDurationMSec
0.0049999999999954525
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
722.6414
PauseStartRelativeMSec
722.6414
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1293928
TotalPromoted1031904
Depth0
GenerationSize0584
TotalPromotedSize01031904
GenerationSize11042048
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize45384
FinalizationPromotedCount27
PinnedObjectCount1
SinkBlockCount1
GCHandleCount297
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
2.1192462022616407
AllocRateMBSec
0
HeapSizePeakMB
2.742152
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.742152
GenSizeBeforeMB
[ 2.621536, 0, 0, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
0.5921211732704126
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
1.784392
PromotedMB
1.458912
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
1008.8607
DurationMSec
3.434500000000071
PauseDurationMSec
3.49980000000005
SuspendDurationMSec
0.031100000000037653
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
281.90239999999994
PauseStartRelativeMSec
1008.8072
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1784392
TotalPromoted1458912
Depth1
GenerationSize084504
TotalPromotedSize0481216
GenerationSize1470896
TotalPromotedSize1977696
GenerationSize2977696
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize760
FinalizationPromotedCount27
PinnedObjectCount3
SinkBlockCount1
GCHandleCount311
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.583568
RatioPeakAfter
2.1207940856045084
AllocRateMBSec
9.164760569615586
HeapSizePeakMB
3.7843280000000004
UserAllocated
[ 2.583568, 0, 0, 0, 0 ]
HeapSizeBeforeMB
3.7843280000000004
GenSizeBeforeMB
[ 2.621664, 1.042048, 0, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
1.226269454124758
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
2.309712
PromotedMB
0.601064
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
1271.1016
DurationMSec
1.7661000000000513
PauseDurationMSec
1.7903999999998632
SuspendDurationMSec
0.005599999999958527
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
258.7871
PauseStartRelativeMSec
1271.0832
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize2309712
TotalPromoted601064
Depth0
GenerationSize0584
TotalPromotedSize0601064
GenerationSize11080136
TotalPromotedSize10
GenerationSize2977696
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount1
GCHandleCount286
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount11
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.578488
RatioPeakAfter
1.8216608823957272
AllocRateMBSec
9.963742396742342
HeapSizePeakMB
4.207512
UserAllocated
[ 2.578488, 0, 0, 0, 0 ]
HeapSizeBeforeMB
4.207512
GenSizeBeforeMB
[ 2.638304, 0.470896, 0.977696, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
0.687089253676877
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
2.69248
PromotedMB
0.374352
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
1549.1166
DurationMSec
1.4981000000000222
PauseDurationMSec
1.525899999999865
SuspendDurationMSec
0.00659999999993488
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
276.22890000000007
PauseStartRelativeMSec
1549.0975
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize2692480
TotalPromoted374352
Depth0
GenerationSize0584
TotalPromotedSize0374352
GenerationSize11462904
TotalPromotedSize10
GenerationSize2977696
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount1
GCHandleCount287
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount6
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.58276
RatioPeakAfter
1.7827519610173521
AllocRateMBSec
9.350071625380252
HeapSizePeakMB
4.8000240000000005
UserAllocated
[ 2.58276, 0, 0, 0, 0 ]
HeapSizeBeforeMB
4.8000240000000005
GenSizeBeforeMB
[ 2.621576, 1.080136, 0.977696, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
0.549369443840346
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
3.515672
PromotedMB
0.674712
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
5
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
1789.9253
DurationMSec
2.0594999999998436
PauseDurationMSec
2.082499999999982
SuspendDurationMSec
0.005100000000084037
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
239.29419999999982
PauseStartRelativeMSec
1789.9098
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3515672
TotalPromoted674712
Depth0
GenerationSize0584
TotalPromotedSize0674712
GenerationSize12145888
TotalPromotedSize10
GenerationSize2977696
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount1
GCHandleCount287
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount5
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.722864
RatioPeakAfter
1.5140707096680235
AllocRateMBSec
11.378729614006533
HeapSizePeakMB
5.322976
UserAllocated
[ 2.582688, 0, 0, 0.140176, 0 ]
HeapSizeBeforeMB
5.322976
GenSizeBeforeMB
[ 2.621552, 1.462904, 0.977696, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
0.8627593301258918
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.708248
PromotedMB
0.590664
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
2101.5986
DurationMSec
2.445100000000366
PauseDurationMSec
2.4773999999997613
SuspendDurationMSec
0.006899999999859574
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
309.5901000000001
PauseStartRelativeMSec
2101.5758
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6708248
TotalPromoted590664
Depth0
GenerationSize02591472
TotalPromotedSize0590664
GenerationSize12747576
TotalPromotedSize10
GenerationSize2977696
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize5022
FinalizationPromotedCount2
PinnedObjectCount2
SinkBlockCount2
GCHandleCount407
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount8
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.573776
RatioPeakAfter
0.8953205069341503
AllocRateMBSec
8.313495812689098
HeapSizePeakMB
6.006032
UserAllocated
[ 2.573776, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.006032
GenSizeBeforeMB
[ 2.621624, 2.145888, 0.977696, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
0.7938667115286796
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2N
HeapSizeAfterMB
6.991184
PromotedMB
4.5372
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7637.5816
DurationMSec
8.764299999999821
PauseDurationMSec
9.134000000000015
SuspendDurationMSec
0.31890000000021246
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
5533.1983
PauseStartRelativeMSec
7637.2429
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6991184
TotalPromoted4537200
Depth2
GenerationSize00
TotalPromotedSize01246056
GenerationSize13385824
TotalPromotedSize12059176
GenerationSize23036696
TotalPromotedSize2971208
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize4307840
TotalPromotedSize40
FinalizationPromotedSize12162
FinalizationPromotedCount13
PinnedObjectCount11
SinkBlockCount4
GCHandleCount693
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration2
Gen0ReductionCount7
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.101656
RatioPeakAfter
0.94569389104907
AllocRateMBSec
0.3798266185399501
HeapSizePeakMB
6.6115200000000005
UserAllocated
[ 2.101656, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.6115200000000005
GenSizeBeforeMB
[ 2.625424, 2.747576, 0.977696, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
0.16480426480382662
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
8.82868
PromotedMB
1.236088
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7655.8309
DurationMSec
2.689400000000205
PauseDurationMSec
3.1291000000001077
SuspendDurationMSec
0.39789999999993597
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
9.073300000000017
PauseStartRelativeMSec
7655.4201
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8828680
TotalPromoted1236088
Depth0
GenerationSize01577936
TotalPromotedSize01236088
GenerationSize13385824
TotalPromotedSize10
GenerationSize23036696
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize4567400
TotalPromotedSize40
FinalizationPromotedSize144
FinalizationPromotedCount6
PinnedObjectCount2
SinkBlockCount4
GCHandleCount819
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount1
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.142944
RatioPeakAfter
1.0536940969657975
AllocRateMBSec
236.18132322308264
HeapSizePeakMB
9.302727999999998
UserAllocated
[ 2.142944, 0, 0, 0, 0 ]
HeapSizeBeforeMB
9.302727999999998
GenSizeBeforeMB
[ 2.619384, 3.385824, 3.036696, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
25.64331606897066
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
11.1488
PromotedMB
10.962128
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
9
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7678.4077
DurationMSec
31.232700000000477
PauseDurationMSec
11.544799999999668
SuspendDurationMSec
1.1186999999999898
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
0.873000000000502
PauseStartRelativeMSec
7677.9052
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
11.05540000000019
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11148800
TotalPromoted10962128
Depth2
GenerationSize00
TotalPromotedSize01033320
GenerationSize13320200
TotalPromotedSize13321008
GenerationSize26464776
TotalPromotedSize26347040
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize41103000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount19
GCHandleCount1056
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.0743936567164176
AllocRateMBSec
0
HeapSizePeakMB
11.978199999999998
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
8.26128
GenSizeBeforeMB
[ 1.577936, 3.385824, 3.036696, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
39.117294371489606
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
7.49076
PromotedMB
0.935304
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7678.6077
DurationMSec
2.2598000000007232
PauseDurationMSec
2.929300000000694
SuspendDurationMSec
0
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
20.08639999999923
PauseStartRelativeMSec
7678.6077
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize7490760
TotalPromoted935304
Depth0
GenerationSize00
TotalPromotedSize0935304
GenerationSize13428080
TotalPromotedSize10
GenerationSize23036696
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize4765160
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount4
GCHandleCount901
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount1239
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure0
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.4473119999999997
RatioPeakAfter
1.2474803624732338
AllocRateMBSec
121.83925442090637
HeapSizePeakMB
9.344576
UserAllocated
[ 2.186552, 0, 0, 0.26076, 0 ]
HeapSizeBeforeMB
9.344576
GenSizeBeforeMB
[ 2.661232, 3.385824, 3.036696, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
12.72739912321026
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1F
HeapSizeAfterMB
10.372416
PromotedMB
4.660736
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeForegroundGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7689.0649
DurationMSec
2.1250999999992928
PauseDurationMSec
2.4206999999996697
SuspendDurationMSec
0.2672999999995227
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
7.917500000000473
PauseStartRelativeMSec
7688.786
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10372416
TotalPromoted4660736
Depth1
GenerationSize00
TotalPromotedSize01339728
GenerationSize12630336
TotalPromotedSize13321008
GenerationSize26464776
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize41016480
TotalPromotedSize40
FinalizationPromotedSize144
FinalizationPromotedCount6
PinnedObjectCount2
SinkBlockCount5
GCHandleCount1024
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount98
ReasonAllocSmall
GlobalMechanismsPromotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated6168
FreeListConsumed6312
AllocedSinceLastGCMB
2.122624
RatioPeakAfter
0.9020016165954008
AllocRateMBSec
268.0927060309281
HeapSizePeakMB
9.355936
UserAllocated
[ 2.122624, 0, 0, 0, 0 ]
HeapSizeBeforeMB
9.355936
GenSizeBeforeMB
[ 2.630336, 3.42808, 3.036696, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
23.415101274879923
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0F
HeapSizeAfterMB
11.1488
PromotedMB
1.03332
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeForegroundGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7706.2888
DurationMSec
2.479699999999866
PauseDurationMSec
3.1019999999998618
SuspendDurationMSec
0.5739000000003216
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
14.500600000000304
PauseStartRelativeMSec
7705.6915
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11148800
TotalPromoted1033320
Depth0
GenerationSize00
TotalPromotedSize01033320
GenerationSize13320200
TotalPromotedSize10
GenerationSize26464776
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize41103000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount8
GCHandleCount1056
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount2218
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
1.931968
RatioPeakAfter
1.0743936567164176
AllocRateMBSec
133.2336592968539
HeapSizePeakMB
11.978199999999998
UserAllocated
[ 1.931968, 0, 0, 0, 0 ]
HeapSizeBeforeMB
11.978199999999998
GenSizeBeforeMB
[ 2.622264, 2.630336, 6.464776, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
17.62239669139691
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.970912
PromotedMB
0.6008
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7737.9933
DurationMSec
2.386800000000221
PauseDurationMSec
2.792699999999968
SuspendDurationMSec
0.37010000000009313
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
27.969699999999648
PauseStartRelativeMSec
7737.612
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11970912
TotalPromoted600800
Depth0
GenerationSize00
TotalPromotedSize0600800
GenerationSize13923952
TotalPromotedSize10
GenerationSize26464776
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize41321360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount15
GCHandleCount1123
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount38140
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.305072
RatioPeakAfter
1.0595389891764302
AllocRateMBSec
82.41318283714266
HeapSizePeakMB
12.683647999999998
UserAllocated
[ 2.305072, 0, 0, 0, 0 ]
HeapSizeBeforeMB
12.683647999999998
GenSizeBeforeMB
[ 2.637848, 3.3202, 6.464776, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
9.078290380464473
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
11.844488
PromotedMB
3.710792
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7818.1358
DurationMSec
4.40059999999994
PauseDurationMSec
5.028699999999844
SuspendDurationMSec
0.5290999999997439
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
77.17789999999968
PauseStartRelativeMSec
7817.5589
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11844488
TotalPromoted3710792
Depth1
GenerationSize00
TotalPromotedSize0786888
GenerationSize1788472
TotalPromotedSize12923904
GenerationSize29366712
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize41428480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount19
GCHandleCount1123
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration1
Gen0ReductionCount1075
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated21968
FreeListConsumed22008
AllocedSinceLastGCMB
4.8774560000000005
RatioPeakAfter
1.3382373303092543
AllocRateMBSec
63.197573398602714
HeapSizePeakMB
15.850735999999998
UserAllocated
[ 4.877392, 0, 0, 6.40000000000085E-05, 0 ]
HeapSizeBeforeMB
15.850735999999998
GenSizeBeforeMB
[ 5.201184, 3.923952, 6.464776, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
6.117148744747834
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.875
PromotedMB
0.009768
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7848.4118
DurationMSec
1.2707000000000335
PauseDurationMSec
1.6557000000002517
SuspendDurationMSec
0.3298000000004322
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
25.511899999999514
PauseStartRelativeMSec
7848.0493
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11875000
TotalPromoted9768
Depth0
GenerationSize09912
TotalPromotedSize09768
GenerationSize1788472
TotalPromotedSize10
GenerationSize29366712
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize41449080
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount31
GCHandleCount1123
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount53
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
4.935408
RatioPeakAfter
1.311119494736842
AllocRateMBSec
193.45513270278158
HeapSizePeakMB
15.569543999999999
UserAllocated
[ 4.935408, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.569543999999999
GenSizeBeforeMB
[ 5.153536, 0.788472, 9.366712, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
6.0943918491153655
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
11.8902
PromotedMB
12.410704
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
16
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7868.1712
DurationMSec
22.467000000000553
PauseDurationMSec
1.3482999999996537
SuspendDurationMSec
0.5153000000000247
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
0.1066000000000713
PauseStartRelativeMSec
7867.8804
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.0907999999999447
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11890200
TotalPromoted12410704
Depth2
GenerationSize016872
TotalPromotedSize016608
GenerationSize1788472
TotalPromotedSize12923904
GenerationSize29366712
TotalPromotedSize29209432
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize41457320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount9
GCHandleCount1125
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.2864604464180585
AllocRateMBSec
0
HeapSizePeakMB
15.296271999999998
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.42592
GenSizeBeforeMB
[ 0.009912, 0.788472, 9.366712, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
11.10248390333879
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.88216
PromotedMB
0.008664
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7868.4048
DurationMSec
1.1680999999998676
PauseDurationMSec
1.5372999999999593
SuspendDurationMSec
0
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
18.72110000000066
PauseStartRelativeMSec
7868.4048
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11882160
TotalPromoted8664
Depth0
GenerationSize08832
TotalPromotedSize08664
GenerationSize1788472
TotalPromotedSize10
GenerationSize29366712
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize41457320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount38
GCHandleCount1125
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount46
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure0
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
4.926112000000001
RatioPeakAfter
1.2873309229971652
AllocRateMBSec
263.13154675739287
HeapSizePeakMB
15.296271999999998
UserAllocated
[ 4.665288, 0, 0, 0.260824, 0 ]
HeapSizeBeforeMB
15.296271999999998
GenSizeBeforeMB
[ 4.880264, 0.788472, 9.366712, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
7.588457133830471
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0F
HeapSizeAfterMB
11.8902
PromotedMB
0.016608
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeForegroundGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7889.289
DurationMSec
1.2439000000003944
PauseDurationMSec
1.66150000000016
SuspendDurationMSec
0.35159999999996217
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
19.328999999999724
PauseStartRelativeMSec
7888.9029
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11890200
TotalPromoted16608
Depth0
GenerationSize016872
TotalPromotedSize016608
GenerationSize1788472
TotalPromotedSize10
GenerationSize29366712
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize41457320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount8
GCHandleCount1125
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount57
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
3.874656
RatioPeakAfter
1.2193900859531377
AllocRateMBSec
200.45817165916785
HeapSizePeakMB
14.498791999999998
UserAllocated
[ 3.87472, 0, 0, -6.4E-05, 0 ]
HeapSizeBeforeMB
14.498791999999998
GenSizeBeforeMB
[ 4.082784, 0.788472, 9.366712, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
7.915485576809362
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.889472
PromotedMB
0.015928
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7909.9959
DurationMSec
1.2030000000004293
PauseDurationMSec
1.6023000000004686
SuspendDurationMSec
0.3411999999998443
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
18.97980000000007
PauseStartRelativeMSec
7909.6204
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11889472
TotalPromoted15928
Depth0
GenerationSize016144
TotalPromotedSize015928
GenerationSize1788472
TotalPromotedSize10
GenerationSize29366712
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize41457320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount12
GCHandleCount1125
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount1059
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
4.857416
RatioPeakAfter
1.3037134029164625
AllocRateMBSec
255.9255629669429
HeapSizePeakMB
15.500464
UserAllocated
[ 4.857416, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.500464
GenSizeBeforeMB
[ 5.084456, 0.788472, 9.366712, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
7.784919906134101
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
12.410856
PromotedMB
0.782504
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7929.97
DurationMSec
1.4749999999994543
PauseDurationMSec
1.8145999999997002
SuspendDurationMSec
0.2878000000000611
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
18.45560000000023
PauseStartRelativeMSec
7929.6555
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize12410856
TotalPromoted782504
Depth1
GenerationSize00
TotalPromotedSize014216
GenerationSize1598696
TotalPromotedSize1768288
GenerationSize210085776
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize41465560
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount13
GCHandleCount1125
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration1
Gen0ReductionCount57
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
4.736384
RatioPeakAfter
1.2395380302535133
AllocRateMBSec
256.6366848002742
HeapSizePeakMB
15.383727999999998
UserAllocated
[ 4.736384, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.383727999999998
GenSizeBeforeMB
[ 4.96772, 0.788472, 9.366712, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
8.952057700465247
(1527 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.124067550096928
MeanSizeAfterMB
15.571952289592774
MeanSizePeakMB
21.532665923723354
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1547
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
11.544799999999668
TotalPauseTimeMSec
1738.9324999999474
MaxSuspendDurationMSec
6.222799999999552
MaxSizePeakMB
24.128584
MaxAllocRateMBSec
529.2851177675614
TotalAllocatedMB
11428.915800000004
TotalCpuMSec
0
TotalPromotedMB
199.95960000000034
TotalSizeAfterMB
24089.810192000023
TotalSizePeakMB
33311.034184000026
FinalizedObjects(empty)
ProcessDuration
37258.5698
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.1038086757990537
MeanSizeAfterMB
15.608186979778225
MeanSizePeakMB
21.59136546901502
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1533
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
7.02809999999954
TotalPauseTimeMSec
1692.1386999999493
MaxSuspendDurationMSec
6.222799999999552
MaxSizePeakMB
24.128584
MaxAllocRateMBSec
445.2314613176797
TotalAllocatedMB
11366.175320000002
TotalCpuMSec
0
TotalPromotedMB
154.49357600000013
TotalSizeAfterMB
23927.35064000002
TotalSizePeakMB
33099.563264000026
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
2.2515181818180694
MeanSizeAfterMB
12.039033454545455
MeanSizePeakMB
16.144084363636363
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
11
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
5.028699999999844
TotalPauseTimeMSec
24.766699999998764
MaxSuspendDurationMSec
0.5290999999997439
MaxSizePeakMB
23.019232000000002
MaxAllocRateMBSec
529.2851177675614
TotalAllocatedMB
60.638824
TotalCpuMSec
0
TotalPromotedMB
17.555992
TotalSizeAfterMB
132.429368
TotalSizePeakMB
177.584928
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
7.342366666666446
MeanSizeAfterMB
10.010061333333333
MeanSizePeakMB
11.295330666666667
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
3
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
11.544799999999668
TotalPauseTimeMSec
22.027099999999336
MaxSuspendDurationMSec
1.1186999999999898
MaxSizePeakMB
15.296271999999998
MaxAllocRateMBSec
0.3798266185399501
TotalAllocatedMB
2.101656
TotalCpuMSec
0
TotalPromotedMB
27.910032
TotalSizeAfterMB
30.030184
TotalSizePeakMB
33.885992
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2N
HeapSizeAfterMB
6.991184
PromotedMB
4.5372
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7637.5816
DurationMSec
8.764299999999821
PauseDurationMSec
9.134000000000015
SuspendDurationMSec
0.31890000000021246
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
5533.1983
PauseStartRelativeMSec
7637.2429
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6991184
TotalPromoted4537200
Depth2
GenerationSize00
TotalPromotedSize01246056
GenerationSize13385824
TotalPromotedSize12059176
GenerationSize23036696
TotalPromotedSize2971208
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize4307840
TotalPromotedSize40
FinalizationPromotedSize12162
FinalizationPromotedCount13
PinnedObjectCount11
SinkBlockCount4
GCHandleCount693
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration2
Gen0ReductionCount7
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.101656
RatioPeakAfter
0.94569389104907
AllocRateMBSec
0.3798266185399501
HeapSizePeakMB
6.6115200000000005
UserAllocated
[ 2.101656, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.6115200000000005
GenSizeBeforeMB
[ 2.625424, 2.747576, 0.977696, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
0.16480426480382662
BGCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
11.1488
PromotedMB
10.962128
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
9
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7678.4077
DurationMSec
31.232700000000477
PauseDurationMSec
11.544799999999668
SuspendDurationMSec
1.1186999999999898
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
0.873000000000502
PauseStartRelativeMSec
7677.9052
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
11.05540000000019
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11148800
TotalPromoted10962128
Depth2
GenerationSize00
TotalPromotedSize01033320
GenerationSize13320200
TotalPromotedSize13321008
GenerationSize26464776
TotalPromotedSize26347040
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize41103000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount19
GCHandleCount1056
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.0743936567164176
AllocRateMBSec
0
HeapSizePeakMB
11.978199999999998
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
8.26128
GenSizeBeforeMB
[ 1.577936, 3.385824, 3.036696, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
39.117294371489606
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
11.8902
PromotedMB
12.410704
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
16
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7868.1712
DurationMSec
22.467000000000553
PauseDurationMSec
1.3482999999996537
SuspendDurationMSec
0.5153000000000247
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
0.1066000000000713
PauseStartRelativeMSec
7867.8804
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.0907999999999447
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11890200
TotalPromoted12410704
Depth2
GenerationSize016872
TotalPromotedSize016608
GenerationSize1788472
TotalPromotedSize12923904
GenerationSize29366712
TotalPromotedSize29209432
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize41457320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount9
GCHandleCount1125
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.2864604464180585
AllocRateMBSec
0
HeapSizePeakMB
15.296271999999998
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.42592
GenSizeBeforeMB
[ 0.009912, 0.788472, 9.366712, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
11.10248390333879
GCThreadIDsToHeapNumbers(empty)
DurationMSec
40092.842000000004
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="57002"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\CachingPlatform_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 12:43:39 PM"\\r\\n SessionEndTime="8/21/2023 12:44:24 PM"\\r\\n SessionDuration="00:0...
Events
[ <Event MSec= "0.0000" PID="8068" PName="PerfView" TID="1672" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 12:44:21 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="171" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 12:43:39 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="8068" PName="PerfView" TID="1672" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "15.6412" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="8068" PName="PerfView" TID="1672" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "15.6097" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "15.6412" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "15.6611" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "15.6611" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", - "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337157948276.9
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="8068" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="171.8675" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmpE397.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="44135.8104" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", - "
Count105
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="1672" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337157948276.9" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337157948276.9" /> ... (more) ]
Count1392
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", - "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="100" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1217" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="145" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="28" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", - " ... (more) ]
Count78
(values)
indexvalue
0\r\n", - "
1\r\n", - "
2\r\n", - "
3\r\n", - "
4\r\n", - "
5\r\n", - "
6\r\n", - "
7\r\n", - "
8\r\n", - "
9\r\n", - "
10\r\n", - "
11\r\n", - "
12\r\n", - "
13\r\n", - "
14\r\n", - "
15\r\n", - "
16\r\n", - "
17\r\n", - "
18\r\n", - "
19\r\n", - "
... (more)
MaxEventIndex57002
EventCount
57002
Size
10712906
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\CachingPlatform_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", - "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", - "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", - "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", - "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", - " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", - " at lambda_method760(Closure, TraceLog)\r\n", - " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 12:43:39Z
SessionEndTime2023-08-21 12:44:24Z
SessionEndTimeRelativeMSec
44135.8104
SessionDuration00:00:44.1358104
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [98, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [100, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [101, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\CachingPlatform_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
PlatformBenchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\mbvjdesc.rdk\\src\\BenchmarksApps\\TechEmpower\\PlatformBenchmarks\\published\\PlatformBenchmarks.exe"  
NumberOfHeapCountSwitches
6
Benchmark
CachingPlatform
Id
datas_3 | CachingPlatform
TotalSuspensionTimeMSec
342.3047999999951
PercentPauseTimeInGC
4.6672014232815435
PercentTimeInGC
3.748473726975834
MeanHeapSizeBeforeMB
21.532665923723354
MaxHeapSizeMB
24.128584
TotalAllocationsMB
11428.915800000004
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\CachingPlatform_Windows.gc.etl.zip
ProcessName
PlatformBenchmarks
datas_3 | ConnectionCloseHttpsHttpSys
Submission#4+LoadInfo
WorkingSetMB
63
PrivateMemoryMB
40
Latency50thMS
0.27
Latency75thMS
0.33
Latency90thMS
0.41
Latency99thMS
1.22
MeanLatencyMS
0.32
ProcessId
2716
RequestsPerMSec
33.317
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
Benchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\pwwp1egt.gen\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios Plaintext --urls https://10.0.0.104:5000 --server HttpSys --kestrelTransport Sockets --protocol https 
ProcessID
2716
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.33624
PromotedMB
0.850704
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6251.1352
DurationMSec
4.339200000000346
PauseDurationMSec
4.684099999999489
SuspendDurationMSec
0.059900000000197906
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
6250.8445
PauseStartRelativeMSec
6250.8445
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4336240
TotalPromoted850704
Depth0
GenerationSize02622128
TotalPromotedSize0850704
GenerationSize1861272
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4744560
TotalPromotedSize40
FinalizationPromotedSize29770
FinalizationPromotedCount19
PinnedObjectCount6
SinkBlockCount3
GCHandleCount555
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure20
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
0.6296717893843514
AllocRateMBSec
0
HeapSizePeakMB
2.730408
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.730408
GenSizeBeforeMB
[ 2.622128, 0, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
0.07487936351213373
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
4.022424
PromotedMB
0.811144
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6273.2279
DurationMSec
2.767300000000432
PauseDurationMSec
2.8370999999997366
SuspendDurationMSec
0.01069999999981519
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
17.69680000000062
PauseStartRelativeMSec
6273.1723
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4022424
TotalPromoted811144
Depth1
GenerationSize02336712
TotalPromotedSize082824
GenerationSize183952
TotalPromotedSize1728320
GenerationSize2728320
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4765160
TotalPromotedSize40
FinalizationPromotedSize568
FinalizationPromotedCount19
PinnedObjectCount2
SinkBlockCount3
GCHandleCount550
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure20
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.488632
RatioPeakAfter
0.8932802708018848
AllocRateMBSec
140.62610189412283
HeapSizePeakMB
3.5931520000000003
UserAllocated
[ 2.488632, 0, 0, 0, 0 ]
HeapSizeBeforeMB
3.5931520000000003
GenSizeBeforeMB
[ 2.6236, 0.861272, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
13.816664150500817
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.79672
PromotedMB
0.48072
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6294.1295
DurationMSec
2.32549999999992
PauseDurationMSec
2.4880000000002838
SuspendDurationMSec
0.12309999999979482
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
17.988500000000386
PauseStartRelativeMSec
6293.9847
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4796720
TotalPromoted480720
Depth0
GenerationSize02611464
TotalPromotedSize0480720
GenerationSize1571136
TotalPromotedSize10
GenerationSize2728320
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4777520
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount6
SinkBlockCount3
GCHandleCount543
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount134
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure20
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.476024
RatioPeakAfter
0.7386380693473875
AllocRateMBSec
137.64482864051737
HeapSizePeakMB
3.5430400000000004
UserAllocated
[ 2.476024, 0, 0, 0, 0 ]
HeapSizeBeforeMB
3.5430400000000004
GenSizeBeforeMB
[ 2.622488, 0.083952, 0.72832, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
12.15051400385907
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
6.955824
PromotedMB
0.105704
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6332.5526
DurationMSec
1.5069000000003143
PauseDurationMSec
1.769999999999527
SuspendDurationMSec
0.15679999999974825
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
35.86840000000029
PauseStartRelativeMSec
6332.3243
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6955824
TotalPromoted105704
Depth1
GenerationSize05235136
TotalPromotedSize0105320
GenerationSize1106248
TotalPromotedSize1384
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4777520
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount10
SinkBlockCount4
GCHandleCount558
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration1
Gen0ReductionCount115
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure20
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.084824
RatioPeakAfter
0.9564048774092042
AllocRateMBSec
141.7633348574221
HeapSizePeakMB
6.652584
UserAllocated
[ 5.084792, 0, 0, 3.200000000000425E-05, 0 ]
HeapSizeBeforeMB
6.652584
GenSizeBeforeMB
[ 5.244848, 0.571136, 0.72832, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
4.702644108143639
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
7.387512
PromotedMB
0.482016
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
5
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6370.013
DurationMSec
1.761000000000422
PauseDurationMSec
1.945600000000013
SuspendDurationMSec
0.12860000000000582
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
35.784599999999955
PauseStartRelativeMSec
6369.8453
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize7387512
TotalPromoted482016
Depth0
GenerationSize05177752
TotalPromotedSize0482016
GenerationSize1595320
TotalPromotedSize10
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4777520
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount4
GCHandleCount546
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount39
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure21
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.048208000000001
RatioPeakAfter
0.8424216434436924
AllocRateMBSec
141.0720812863636
HeapSizePeakMB
6.223399999999999
UserAllocated
[ 5.048208000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.223399999999999
GenSizeBeforeMB
[ 5.280232, 0.10624800000000001, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.156611944808177
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.200688
PromotedMB
0.463016
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6407.1132
DurationMSec
1.671900000000278
PauseDurationMSec
1.8416000000006534
SuspendDurationMSec
0.10920000000078289
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
35.18109999999979
PauseStartRelativeMSec
6406.9562
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5200688
TotalPromoted463016
Depth0
GenerationSize02520536
TotalPromotedSize0463016
GenerationSize11065712
TotalPromotedSize10
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4777520
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount4
GCHandleCount541
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount46
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure20
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
4.96488
RatioPeakAfter
1.2812289450934182
AllocRateMBSec
141.1235009706925
HeapSizePeakMB
6.663272
UserAllocated
[ 4.96488, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.663272
GenSizeBeforeMB
[ 5.231032, 0.5953200000000001, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
4.974245530446541
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
4.355704
PromotedMB
0.099256
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6462.874
DurationMSec
1.4053000000003522
PauseDurationMSec
1.6539999999995416
SuspendDurationMSec
0.14549999999962893
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
53.87630000000081
PauseStartRelativeMSec
6462.6625
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4355704
TotalPromoted99256
Depth1
GenerationSize02640728
TotalPromotedSize099192
GenerationSize1100536
TotalPromotedSize164
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4777520
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount4
GCHandleCount518
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration1
Gen0ReductionCount44
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure21
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.590568
RatioPeakAfter
2.2347542440900483
AllocRateMBSec
140.88881381980363
HeapSizePeakMB
9.733928
UserAllocated
[ 7.590568, 0, 0, 0, 0 ]
HeapSizeBeforeMB
9.733928
GenSizeBeforeMB
[ 7.831296, 1.065712, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.9785540506705908
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.840896
PromotedMB
0.486896
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6518.4887
DurationMSec
1.3537999999998647
PauseDurationMSec
1.516700000000128
SuspendDurationMSec
0.08330000000023574
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
54.063099999999395
PauseStartRelativeMSec
6518.3438
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4840896
TotalPromoted486896
Depth0
GenerationSize02618728
TotalPromotedSize0486896
GenerationSize1595368
TotalPromotedSize10
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4789880
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount4
GCHandleCount496
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount24
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure21
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.483928000000001
RatioPeakAfter
1.8099525377120271
AllocRateMBSec
138.42950182287152
HeapSizePeakMB
8.761792000000002
UserAllocated
[ 7.483928000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
8.761792000000002
GenSizeBeforeMB
[ 7.824336000000001, 0.100536, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.7288691215156247
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
2.690744
PromotedMB
0.459744
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6574.3427
DurationMSec
1.1732999999994718
PauseDurationMSec
1.277100000000246
SuspendDurationMSec
0.03359999999975116
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
54.406299999999646
PauseStartRelativeMSec
6574.25
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize2690744
TotalPromoted459744
Depth0
GenerationSize0584
TotalPromotedSize0459744
GenerationSize11063360
TotalPromotedSize10
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4789880
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount501
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount24
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure21
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.530888000000001
RatioPeakAfter
3.415557927472848
AllocRateMBSec
138.41941098733142
HeapSizePeakMB
9.190392000000001
UserAllocated
[ 7.530888000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
9.190392000000001
GenSizeBeforeMB
[ 7.7581039999999994, 0.595368, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.2935021927544805
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
3.19204
PromotedMB
0.472584
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6630.4164
DurationMSec
1.2169000000003507
PauseDurationMSec
1.3903999999993175
SuspendDurationMSec
0.06649999999990541
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
54.738900000000285
PauseStartRelativeMSec
6630.256
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3192040
TotalPromoted472584
Depth0
GenerationSize0481280
TotalPromotedSize0472584
GenerationSize11063360
TotalPromotedSize10
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4810480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount509
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount20
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure21
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.565408
RatioPeakAfter
3.032834175010338
AllocRateMBSec
138.20898848898972
HeapSizePeakMB
9.680928
UserAllocated
[ 7.565408, 0, 0, 0, 0 ]
HeapSizeBeforeMB
9.680928
GenSizeBeforeMB
[ 7.780647999999999, 1.06336, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.4771376090550343
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
3.191208
PromotedMB
0.471752
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6684.0964
DurationMSec
1.12079999999969
PauseDurationMSec
1.3319000000001324
SuspendDurationMSec
0.1370999999999185
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
52.264000000000124
PauseStartRelativeMSec
6683.8984
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3191208
TotalPromoted471752
Depth0
GenerationSize0480448
TotalPromotedSize0471752
GenerationSize11063360
TotalPromotedSize10
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4810480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount513
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount21
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure21
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.54384
RatioPeakAfter
3.1835969325722417
AllocRateMBSec
144.34103780805108
HeapSizePeakMB
10.159519999999999
UserAllocated
[ 7.54384, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.159519999999999
GenSizeBeforeMB
[ 8.259239999999998, 1.06336, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.4850781496348153
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
3.187072
PromotedMB
0.467688
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6736.3363
DurationMSec
1.1023000000004686
PauseDurationMSec
1.3252000000002226
SuspendDurationMSec
0.15820000000076107
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
50.90569999999934
PauseStartRelativeMSec
6736.1239
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3187072
TotalPromoted467688
Depth0
GenerationSize0476312
TotalPromotedSize0467688
GenerationSize11063360
TotalPromotedSize10
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4810480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount514
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount20
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure21
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.513223999999999
RatioPeakAfter
3.165302823406562
AllocRateMBSec
147.59101633019674
HeapSizePeakMB
10.088047999999999
UserAllocated
[ 7.513223999999999, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.088047999999999
GenSizeBeforeMB
[ 8.187767999999998, 1.06336, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.537195414975108
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
3.184792
PromotedMB
0.465456
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6788.6134
DurationMSec
1.0630000000001019
PauseDurationMSec
1.1711999999997715
SuspendDurationMSec
0.023299999999835563
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
51.07790000000023
PauseStartRelativeMSec
6788.5176
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3184792
TotalPromoted465456
Depth0
GenerationSize0474032
TotalPromotedSize0465456
GenerationSize11063360
TotalPromotedSize10
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4810480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount522
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount20
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure21
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.429504
RatioPeakAfter
3.155305589815599
AllocRateMBSec
145.4543745925335
HeapSizePeakMB
10.048992
UserAllocated
[ 7.429504, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.048992
GenSizeBeforeMB
[ 8.148712, 1.06336, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.2415697112481774
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.718344
PromotedMB
0.469464
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6841.1492
DurationMSec
1.0879000000004453
PauseDurationMSec
1.30829999999969
SuspendDurationMSec
0.1592000000000553
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
51.26549999999952
PauseStartRelativeMSec
6840.9433
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5718344
TotalPromoted469464
Depth0
GenerationSize03007584
TotalPromotedSize0469464
GenerationSize11063360
TotalPromotedSize10
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4810480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount4
GCHandleCount559
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount19
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure21
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.495623999999999
RatioPeakAfter
1.7663799169829588
AllocRateMBSec
146.21185787713122
HeapSizePeakMB
10.100768
UserAllocated
[ 7.495623999999999, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.100768
GenSizeBeforeMB
[ 8.200488, 1.06336, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.488501877360415
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.794968
PromotedMB
0.470304
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6894.3176
DurationMSec
1.0691999999999098
PauseDurationMSec
1.1502000000000407
SuspendDurationMSec
0.011700000000018917
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
52.01119999999992
PauseStartRelativeMSec
6894.2494
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5794968
TotalPromoted470304
Depth0
GenerationSize03084208
TotalPromotedSize0470304
GenerationSize11063360
TotalPromotedSize10
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4810480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount4
GCHandleCount588
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount20
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure21
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.602008
RatioPeakAfter
1.7648014622341317
AllocRateMBSec
146.16098071184692
HeapSizePeakMB
10.226968000000001
UserAllocated
[ 7.602008, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.226968000000001
GenSizeBeforeMB
[ 8.326688, 1.06336, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.163599905194449
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
8.05408
PromotedMB
0.466168
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6945.9316
DurationMSec
1.040299999999661
PauseDurationMSec
1.2062999999998283
SuspendDurationMSec
0.08909999999923457
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
50.39590000000044
PauseStartRelativeMSec
6945.7839
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8054080
TotalPromoted466168
Depth0
GenerationSize05343320
TotalPromotedSize0466168
GenerationSize11063360
TotalPromotedSize10
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4810480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount4
GCHandleCount616
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount19
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure20
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.484736
RatioPeakAfter
1.2652230918987641
AllocRateMBSec
148.51874854898782
HeapSizePeakMB
10.190208
UserAllocated
[ 7.484736, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.190208
GenSizeBeforeMB
[ 8.289928, 1.06336, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.337691028676727
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.804648
PromotedMB
0.468576
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6997.9197
DurationMSec
1.0516999999999825
PauseDurationMSec
1.2566999999999098
SuspendDurationMSec
0.012200000000120781
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
50.75770000000011
PauseStartRelativeMSec
6997.7308
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5804648
TotalPromoted468576
Depth0
GenerationSize03093888
TotalPromotedSize0468576
GenerationSize11063360
TotalPromotedSize10
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4810480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount4
GCHandleCount633
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount19
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure20
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.582008
RatioPeakAfter
1.753696692719352
AllocRateMBSec
149.37650839182987
HeapSizePeakMB
10.179592000000001
UserAllocated
[ 7.582008, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.179592000000001
GenSizeBeforeMB
[ 8.279312000000001, 1.06336, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.416061705988936
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
3.188552
PromotedMB
0.469144
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7050.4739
DurationMSec
1.0561999999999898
PauseDurationMSec
1.170600000000377
SuspendDurationMSec
0.038800000000264845
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
51.40020000000004
PauseStartRelativeMSec
7050.373
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3188552
TotalPromoted469144
Depth0
GenerationSize0477792
TotalPromotedSize0469144
GenerationSize11063360
TotalPromotedSize10
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4810480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount650
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount19
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure20
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.555439999999999
RatioPeakAfter
3.191296864532866
AllocRateMBSec
146.99242415399146
HeapSizePeakMB
10.175616
UserAllocated
[ 7.555439999999999, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.175616
GenSizeBeforeMB
[ 8.275336, 1.06336, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.2267114063327313
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
3.185856
PromotedMB
0.466496
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7102.6418
DurationMSec
0.9825000000000728
PauseDurationMSec
1.1427999999996246
SuspendDurationMSec
0.07879999999931897
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
50.96309999999994
PauseStartRelativeMSec
7102.4943
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3185856
TotalPromoted466496
Depth0
GenerationSize0475096
TotalPromotedSize0466496
GenerationSize11063360
TotalPromotedSize10
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4810480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount665
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount19
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure21
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.546984
RatioPeakAfter
3.1830340103256396
AllocRateMBSec
148.08722389336617
HeapSizePeakMB
10.140688
UserAllocated
[ 7.546984, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.140688
GenSizeBeforeMB
[ 8.240408, 1.06336, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.1932257191596998
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.801384
PromotedMB
0.473512
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7157.3895
DurationMSec
1.108499999999367
PauseDurationMSec
1.2973000000001775
SuspendDurationMSec
0.10609999999996944
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
53.590799999999945
PauseStartRelativeMSec
7157.2162
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5801384
TotalPromoted473512
Depth0
GenerationSize03090624
TotalPromotedSize0473512
GenerationSize11063360
TotalPromotedSize10
GenerationSize2728640
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4810480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount4
GCHandleCount680
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount18
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure20
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.603096000000001
RatioPeakAfter
1.762638708280645
AllocRateMBSec
141.8731573329752
HeapSizePeakMB
10.225744
UserAllocated
[ 7.603096000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.225744
GenSizeBeforeMB
[ 8.325464, 1.06336, 0.72864, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.3635359941411247
(581 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.1680963394342407
MeanSizeAfterMB
4.938486429284524
MeanSizePeakMB
9.157643594009992
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
601
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
13.638899999998102
TotalPauseTimeMSec
702.0258999999787
MaxSuspendDurationMSec
12.583200000000943
MaxSizePeakMB
10.555792000000002
MaxAllocRateMBSec
163.33965374738528
TotalAllocatedMB
4507.167111999997
TotalCpuMSec
0
TotalPromotedMB
208.54948799999974
TotalSizeAfterMB
2968.030343999999
TotalSizePeakMB
5503.743800000005
FinalizedObjects(empty)
ProcessDuration
30080.043700000002
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.326253676470597
MeanSizeAfterMB
5.147204882352945
MeanSizePeakMB
8.959283607843135
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
408
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
13.638899999998102
TotalPauseTimeMSec
541.1115000000036
MaxSuspendDurationMSec
12.583200000000943
MaxSizePeakMB
10.260968
MaxAllocRateMBSec
161.12784251375672
TotalAllocatedMB
3062.8690799999995
TotalCpuMSec
0
TotalPromotedMB
191.05388799999983
TotalSizeAfterMB
2100.0595920000014
TotalSizePeakMB
3655.3877119999993
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
0.8337533678755187
MeanSizeAfterMB
4.497257782383419
MeanSizePeakMB
9.576974549222799
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
193
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
2.8370999999997366
TotalPauseTimeMSec
160.9143999999751
MaxSuspendDurationMSec
0.1882000000005064
MaxSizePeakMB
10.555792000000002
MaxAllocRateMBSec
163.33965374738528
TotalAllocatedMB
1444.2980320000006
TotalCpuMSec
0
TotalPromotedMB
17.495600000000003
TotalSizeAfterMB
867.9707519999998
TotalSizePeakMB
1848.3560880000002
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
NaN
MeanSizeAfterMB
NaN
MeanSizePeakMB
NaN
MeanCpuMSec
NaN
Interesting
False
GCVersionInfoMismatch
False
Count
0
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
0
TotalPauseTimeMSec
0
MaxSuspendDurationMSec
0
MaxSizePeakMB
0
MaxAllocRateMBSec
0
TotalAllocatedMB
0
TotalCpuMSec
0
TotalPromotedMB
0
TotalSizeAfterMB
0
TotalSizePeakMB
0
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking(empty)
BGCs(empty)
GCThreadIDsToHeapNumbers(empty)
DurationMSec
38030.068100000004
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="23601"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionCloseHttpsHttpSys_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 4:08:59 PM"\\r\\n SessionEndTime="8/21/2023 4:09:42 PM"\\r\\n SessionDura...
Events
[ <Event MSec= "0.0000" PID="11640" PName="PerfView" TID="11208" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 4:09:40 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="99" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 4:08:59 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="11640" PName="PerfView" TID="11208" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "4.4933" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="11640" PName="PerfView" TID="11208" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "4.4609" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "4.4933" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "4.5110" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "4.5110" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", - "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337145628404.5
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="11640" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="156.4164" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmpE14C.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="43020.8852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", - "
Count127
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="11208" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337145628404.5" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337145628404.5" /> ... (more) ]
Count1674
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", - "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="123" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1512" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="132" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="27" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="13" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", - " ... (more) ]
Count77
(values)
indexvalue
0\r\n", - "
1\r\n", - "
2\r\n", - "
3\r\n", - "
4\r\n", - "
5\r\n", - "
6\r\n", - "
7\r\n", - "
8\r\n", - "
9\r\n", - "
10\r\n", - "
11\r\n", - "
12\r\n", - "
13\r\n", - "
14\r\n", - "
15\r\n", - "
16\r\n", - "
17\r\n", - "
18\r\n", - "
19\r\n", - "
... (more)
MaxEventIndex23601
EventCount
23601
Size
5232244
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionCloseHttpsHttpSys_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", - "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", - "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", - "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", - "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", - " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", - " at lambda_method760(Closure, TraceLog)\r\n", - " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 16:08:59Z
SessionEndTime2023-08-21 16:09:42Z
SessionEndTimeRelativeMSec
43020.8852
SessionDuration00:00:43.0208852
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [112, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [121, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [114, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [110, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [105, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [104, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [103, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [102, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [98, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [100, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [123, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [124, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionCloseHttpsHttpSys_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
1GC.Analysis.API.GCProcessData
Benchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\pwwp1egt.gen\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios Plaintext --urls https://10.0.0.104:5000 --server HttpSys --kestrelTransport Sockets --protocol https 
NumberOfHeapCountSwitches
2
Benchmark
ConnectionCloseHttpsHttpSys
Id
datas_3 | ConnectionCloseHttpsHttpSys
TotalSuspensionTimeMSec
43.99279999999635
PercentPauseTimeInGC
2.3338593088545903
PercentTimeInGC
2.1876068617546003
MeanHeapSizeBeforeMB
9.157643594009992
MaxHeapSizeMB
10.555792000000002
TotalAllocationsMB
4507.167111999997
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionCloseHttpsHttpSys_Windows.gc.etl.zip
ProcessName
Benchmarks
datas_3 | ConnectionCloseHttpSys
Submission#4+LoadInfo
WorkingSetMB
69
PrivateMemoryMB
46
Latency50thMS
0.14
Latency75thMS
0.18
Latency90thMS
0.23
Latency99thMS
1.25
MeanLatencyMS
0.23
ProcessId
10876
RequestsPerMSec
105.968
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
Benchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\rxgapyjw.hah\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios Plaintext --urls http://10.0.0.104:5000 --server HttpSys --kestrelTransport Sockets --protocol http 
ProcessID
10876
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.356048
PromotedMB
0.847648
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6025.4815
DurationMSec
4.605199999999968
PauseDurationMSec
4.9409999999998035
SuspendDurationMSec
0.07909999999992579
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
6025.202
PauseStartRelativeMSec
6025.202
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4356048
TotalPromoted847648
Depth0
GenerationSize02620496
TotalPromotedSize0847648
GenerationSize1857992
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4769280
TotalPromotedSize40
FinalizationPromotedSize29770
FinalizationPromotedCount19
PinnedObjectCount10
SinkBlockCount3
GCHandleCount579
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
0.6267313858800454
AllocRateMBSec
0
HeapSizePeakMB
2.7300720000000003
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.7300720000000003
GenSizeBeforeMB
[ 2.621792, 0, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
0.08193835535906534
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
4.233072
PromotedMB
0.817176
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6038.2973
DurationMSec
2.9625999999998385
PauseDurationMSec
3.1833999999998923
SuspendDurationMSec
0.12139999999999418
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
8.010299999999916
PauseStartRelativeMSec
6038.0979
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4233072
TotalPromoted817176
Depth1
GenerationSize02526504
TotalPromotedSize0100904
GenerationSize1100376
TotalPromotedSize1716272
GenerationSize2716272
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4781640
TotalPromotedSize40
FinalizationPromotedSize568
FinalizationPromotedCount19
PinnedObjectCount10
SinkBlockCount4
GCHandleCount591
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.490248
RatioPeakAfter
0.8481499960312511
AllocRateMBSec
310.88074104590663
HeapSizePeakMB
3.59028
UserAllocated
[ 2.490248, 0, 0, 0, 0 ]
HeapSizeBeforeMB
3.59028
GenSizeBeforeMB
[ 2.624008, 0.857992, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
28.43921134209374
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.805432
PromotedMB
0.479296
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6048.5983
DurationMSec
2.1964000000007218
PauseDurationMSec
2.3486999999995533
SuspendDurationMSec
0.10840000000007421
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
7.201900000000023
PauseStartRelativeMSec
6048.4628
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4805432
TotalPromoted479296
Depth0
GenerationSize02614488
TotalPromotedSize0479296
GenerationSize1584752
TotalPromotedSize10
GenerationSize2716272
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4781640
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount4
GCHandleCount562
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount6266
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.477848
RatioPeakAfter
0.7386490954403268
AllocRateMBSec
344.05476332634333
HeapSizePeakMB
3.549528
UserAllocated
[ 2.477848, 0, 0, 0, 0 ]
HeapSizeBeforeMB
3.549528
GenSizeBeforeMB
[ 2.6246, 0.100376, 0.716272, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
24.592172219542828
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
8.460568
PromotedMB
0.103424
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6086.4485
DurationMSec
1.274199999999837
PauseDurationMSec
1.475100000000566
SuspendDurationMSec
0.05830000000059954
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
35.48829999999998
PauseStartRelativeMSec
6086.284
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8460568
TotalPromoted103424
Depth1
GenerationSize06741792
TotalPromotedSize0100944
GenerationSize1101864
TotalPromotedSize12480
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4789880
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount6
SinkBlockCount4
GCHandleCount614
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration1
Gen0ReductionCount243
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.495375999999998
RatioPeakAfter
1.6728664080236695
AllocRateMBSec
352.0984662550758
HeapSizePeakMB
14.153400000000001
UserAllocated
[ 12.495344, 0, 0, 3.200000000000425E-05, 0 ]
HeapSizeBeforeMB
14.153400000000001
GenSizeBeforeMB
[ 12.744096, 0.584752, 0.716272, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.9907043183271673
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.812536
PromotedMB
0.463712
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
5
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6122.4935
DurationMSec
1.0561999999999898
PauseDurationMSec
1.2611000000006243
SuspendDurationMSec
0.10429999999996653
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.585399999999936
PauseStartRelativeMSec
6122.3092
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11812536
TotalPromoted463712
Depth0
GenerationSize09626736
TotalPromotedSize0463712
GenerationSize1568888
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4789880
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount10
SinkBlockCount4
GCHandleCount615
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount1033
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.678648
RatioPeakAfter
1.1750289692238824
AllocRateMBSec
366.5896013924958
HeapSizePeakMB
13.880072000000002
UserAllocated
[ 12.678648, 0, 0, 0, 0 ]
HeapSizeBeforeMB
13.880072000000002
GenSizeBeforeMB
[ 12.951176, 0.101864, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.518056156111767
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
12.221488
PromotedMB
0.451336
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6158.5959
DurationMSec
1.0823999999993248
PauseDurationMSec
1.3438000000005559
SuspendDurationMSec
0.16660000000047148
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.80439999999999
PauseStartRelativeMSec
6158.3556
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize12221488
TotalPromoted451336
Depth0
GenerationSize09581136
TotalPromotedSize0451336
GenerationSize11023440
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4789880
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount10
SinkBlockCount4
GCHandleCount627
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount28
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.62916
RatioPeakAfter
1.1715287041970668
AllocRateMBSec
362.861017572491
HeapSizePeakMB
14.317824000000002
UserAllocated
[ 12.62916, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.317824000000002
GenSizeBeforeMB
[ 12.921904000000001, 0.568888, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.717474175755738
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
3.116488
PromotedMB
0.465704
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6195.7115
DurationMSec
0.9928999999992811
PauseDurationMSec
1.217899999999645
SuspendDurationMSec
0.13119999999980791
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
35.82390000000032
PauseStartRelativeMSec
6195.5036
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3116488
TotalPromoted465704
Depth0
GenerationSize0584
TotalPromotedSize0465704
GenerationSize11494872
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4794000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount628
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount29
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.702832
RatioPeakAfter
4.752580468784093
AllocRateMBSec
354.59098534776746
HeapSizePeakMB
14.811360000000002
UserAllocated
[ 12.702832, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.811360000000002
GenSizeBeforeMB
[ 12.960888, 1.02344, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.2879071751363216
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
8.584416
PromotedMB
0.49548
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6230.9754
DurationMSec
1.0477000000000771
PauseDurationMSec
1.2559000000001106
SuspendDurationMSec
0.09860000000026048
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.08320000000003
PauseStartRelativeMSec
6230.7887
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8584416
TotalPromoted495480
Depth0
GenerationSize05468512
TotalPromotedSize0495480
GenerationSize11494872
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4794000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount10
SinkBlockCount4
GCHandleCount662
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount26
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.607119999999998
RatioPeakAfter
1.7717873877500814
AllocRateMBSec
369.89249835696137
HeapSizePeakMB
15.209760000000001
UserAllocated
[ 12.607119999999998, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.209760000000001
GenSizeBeforeMB
[ 12.887856, 1.494872, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.553853946478845
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.176408
PromotedMB
0.46468
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6266.5041
DurationMSec
0.7299999999995634
PauseDurationMSec
1.011700000000019
SuspendDurationMSec
0.19620000000031723
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.21309999999994
PauseStartRelativeMSec
6266.2381
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6176408
TotalPromoted464680
Depth0
GenerationSize03048144
TotalPromotedSize0464680
GenerationSize11494872
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4806360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount4
GCHandleCount685
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount29
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.683696000000001
RatioPeakAfter
2.5554101995852605
AllocRateMBSec
370.7263007444524
HeapSizePeakMB
15.783256
UserAllocated
[ 12.683696000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.783256
GenSizeBeforeMB
[ 13.461352, 1.494872, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.8721241852331882
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
8.718336
PromotedMB
0.4736
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6301.9359
DurationMSec
0.7701999999999316
PauseDurationMSec
1.1604999999999563
SuspendDurationMSec
0.2798000000002503
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.339500000000044
PauseStartRelativeMSec
6301.5749
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8718336
TotalPromoted473600
Depth0
GenerationSize05590072
TotalPromotedSize0473600
GenerationSize11494872
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4806360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount4
GCHandleCount695
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount20
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.613192
RatioPeakAfter
1.8029165198496595
AllocRateMBSec
367.30855137669397
HeapSizePeakMB
15.718432000000002
UserAllocated
[ 12.613192, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.718432000000002
GenSizeBeforeMB
[ 13.396528, 1.494872, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.269014084506919
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
13.944792
PromotedMB
0.512048
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6337.1346
DurationMSec
1.032999999999447
PauseDurationMSec
1.2839999999996508
SuspendDurationMSec
0.14729999999963184
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.19890000000032
PauseStartRelativeMSec
6336.906
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13944792
TotalPromoted512048
Depth0
GenerationSize010816528
TotalPromotedSize0512048
GenerationSize11494872
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4806360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount10
SinkBlockCount4
GCHandleCount767
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount21
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.660464000000001
RatioPeakAfter
1.1292720608525393
AllocRateMBSec
370.2009128948558
HeapSizePeakMB
15.747464000000003
UserAllocated
[ 12.660464000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.747464000000003
GenSizeBeforeMB
[ 13.42556, 1.494872, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.618644473815984
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.235432
PromotedMB
0.473752
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6372.0325
DurationMSec
0.7903999999998632
PauseDurationMSec
1.012300000000323
SuspendDurationMSec
0.13109999999960564
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
33.657100000000355
PauseStartRelativeMSec
6371.826
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11235432
TotalPromoted473752
Depth0
GenerationSize08107168
TotalPromotedSize0473752
GenerationSize11494872
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4806360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount6
SinkBlockCount4
GCHandleCount718
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount28
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.602151999999998
RatioPeakAfter
1.4067361183797829
AllocRateMBSec
374.427743329041
HeapSizePeakMB
15.805288
UserAllocated
[ 12.602151999999998, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.805288
GenSizeBeforeMB
[ 13.483383999999997, 1.494872, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.919865933648414
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.124632
PromotedMB
0.47292
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6406.3897
DurationMSec
0.8356000000003405
PauseDurationMSec
1.0209999999997308
SuspendDurationMSec
0.09429999999974825
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
33.39140000000043
PauseStartRelativeMSec
6406.2159
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6124632
TotalPromoted472920
Depth0
GenerationSize02996368
TotalPromotedSize0472920
GenerationSize11494872
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4806360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount4
GCHandleCount782
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount22
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.444376
RatioPeakAfter
2.540756734445433
AllocRateMBSec
372.6820678378217
HeapSizePeakMB
15.561200000000001
UserAllocated
[ 12.444376, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.561200000000001
GenSizeBeforeMB
[ 13.239296000000001, 1.494872, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.9669537724765664
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
8.68692
PromotedMB
0.487912
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6442.1829
DurationMSec
0.931800000000294
PauseDurationMSec
1.1000999999996566
SuspendDurationMSec
0.03480000000035943
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.80670000000009
PauseStartRelativeMSec
6442.0333
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8686920
TotalPromoted487912
Depth0
GenerationSize05558656
TotalPromotedSize0487912
GenerationSize11494872
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4806360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount4
GCHandleCount810
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount23
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.687792000000002
RatioPeakAfter
1.8143387990219777
AllocRateMBSec
364.5215432660944
HeapSizePeakMB
15.761016
UserAllocated
[ 12.687792000000002, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.761016
GenSizeBeforeMB
[ 13.439112, 1.494872, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.0637650807080115
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
3.614352
PromotedMB
0.480216
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6476.8363
DurationMSec
0.8517000000001644
PauseDurationMSec
1.0410000000001673
SuspendDurationMSec
0.0826999999999316
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
33.546299999999974
PauseStartRelativeMSec
6476.6622
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3614352
TotalPromoted480216
Depth0
GenerationSize0486088
TotalPromotedSize0480216
GenerationSize11494872
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4806360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount765
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount25
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.594232
RatioPeakAfter
4.338835841113428
AllocRateMBSec
375.42834828282133
HeapSizePeakMB
15.682080000000001
UserAllocated
[ 12.594232, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.682080000000001
GenSizeBeforeMB
[ 13.360176, 1.494872, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.0097752643315987
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.255704
PromotedMB
0.507232
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6511.2777
DurationMSec
0.9681000000000495
PauseDurationMSec
1.1700000000000728
SuspendDurationMSec
0.09259999999994761
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
33.40660000000025
PauseStartRelativeMSec
6511.0957
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6255704
TotalPromoted507232
Depth0
GenerationSize03127440
TotalPromotedSize0507232
GenerationSize11494872
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4806360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount4
GCHandleCount749
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount24
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.32172
RatioPeakAfter
2.462539787688165
AllocRateMBSec
368.84088772876936
HeapSizePeakMB
15.404920000000002
UserAllocated
[ 12.32172, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.404920000000002
GenSizeBeforeMB
[ 13.083016, 1.494872, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.383791350219691
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
16.536664
PromotedMB
0.505552
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6546.4292
DurationMSec
1.0261000000000422
PauseDurationMSec
1.3231000000005224
SuspendDurationMSec
0.19860000000062428
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
33.90849999999955
PauseStartRelativeMSec
6546.1554
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize16536664
TotalPromoted505552
Depth0
GenerationSize013408400
TotalPromotedSize0505552
GenerationSize11494872
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4806360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount16
SinkBlockCount4
GCHandleCount830
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount27
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.688656
RatioPeakAfter
0.958785883295446
AllocRateMBSec
374.2028105047456
HeapSizePeakMB
15.855120000000001
UserAllocated
[ 12.688656, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.855120000000001
GenSizeBeforeMB
[ 13.533216000000001, 1.494872, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.7554354613486747
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.33108
PromotedMB
0.500048
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6582.1774
DurationMSec
0.992300000000796
PauseDurationMSec
1.1536000000005515
SuspendDurationMSec
0.026899999999841384
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.57899999999972
PauseStartRelativeMSec
6582.0354
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11331080
TotalPromoted500048
Depth0
GenerationSize08202816
TotalPromotedSize0500048
GenerationSize11494872
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4806360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount10
SinkBlockCount4
GCHandleCount840
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount28
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.623040000000001
RatioPeakAfter
1.3991908979550052
AllocRateMBSec
365.04930738309673
HeapSizePeakMB
15.854344
UserAllocated
[ 12.623040000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.854344
GenSizeBeforeMB
[ 13.53244, 1.494872, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.228424463936413
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.424192
PromotedMB
0.50492
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6617.4359
DurationMSec
0.9648999999999432
PauseDurationMSec
1.2687999999998283
SuspendDurationMSec
0.20820000000003347
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
33.98580000000038
PauseStartRelativeMSec
6617.1566
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11424192
TotalPromoted504920
Depth0
GenerationSize08295928
TotalPromotedSize0504920
GenerationSize11494872
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4806360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount11
SinkBlockCount4
GCHandleCount848
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount27
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.703008
RatioPeakAfter
1.383955031568097
AllocRateMBSec
373.7739879596731
HeapSizePeakMB
15.810568000000002
UserAllocated
[ 12.703008, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.810568000000002
GenSizeBeforeMB
[ 13.488664, 1.494872, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.5989629722073735
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.19848
PromotedMB
0.470424
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6661.4422
DurationMSec
0.8099999999994907
PauseDurationMSec
1.048399999999674
SuspendDurationMSec
0.1455999999998312
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
42.82290000000012
PauseStartRelativeMSec
6661.2248
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6198480
TotalPromoted470424
Depth0
GenerationSize03057856
TotalPromotedSize0470424
GenerationSize11494872
TotalPromotedSize10
GenerationSize2718752
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4818720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount4
GCHandleCount844
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount27
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure18
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.652448000000001
RatioPeakAfter
2.5556459002852314
AllocRateMBSec
295.45985909408205
HeapSizePeakMB
15.841120000000002
UserAllocated
[ 12.652448000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.841120000000002
GenSizeBeforeMB
[ 13.519216, 1.494872, 0.718752, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.389717195523449
(957 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.0847269191403375
MeanSizeAfterMB
8.023492249744113
MeanSizePeakMB
15.60437111975436
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
977
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
15.341199999998935
TotalPauseTimeMSec
1059.7782000001098
MaxSuspendDurationMSec
14.047299999998359
MaxSizePeakMB
15.976064000000003
MaxAllocRateMBSec
433.64134237257053
TotalAllocatedMB
12232.206520000014
TotalCpuMSec
0
TotalPromotedMB
479.4155759999997
TotalSizeAfterMB
7838.951927999998
TotalSizePeakMB
15245.47058400001
FinalizedObjects(empty)
ProcessDuration
30205.791199999996
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.0821740512821634
MeanSizeAfterMB
8.026931577435894
MeanSizePeakMB
15.618181440000008
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
975
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
15.341199999998935
TotalPauseTimeMSec
1055.1197000001093
MaxSuspendDurationMSec
14.047299999998359
MaxSizePeakMB
15.976064000000003
MaxAllocRateMBSec
433.64134237257053
TotalAllocatedMB
12217.220896000013
TotalCpuMSec
0
TotalPromotedMB
478.4949759999997
TotalSizeAfterMB
7826.258287999997
TotalSizePeakMB
15227.726904000008
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
2.329250000000229
MeanSizeAfterMB
6.34682
MeanSizePeakMB
8.87184
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
2
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
3.1833999999998923
TotalPauseTimeMSec
4.658500000000458
MaxSuspendDurationMSec
0.12139999999999418
MaxSizePeakMB
14.153400000000001
MaxAllocRateMBSec
352.0984662550758
TotalAllocatedMB
14.985623999999998
TotalCpuMSec
0
TotalPromotedMB
0.9206
TotalSizeAfterMB
12.69364
TotalSizePeakMB
17.74368
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
NaN
MeanSizeAfterMB
NaN
MeanSizePeakMB
NaN
MeanCpuMSec
NaN
Interesting
False
GCVersionInfoMismatch
False
Count
0
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
0
TotalPauseTimeMSec
0
MaxSuspendDurationMSec
0
MaxSizePeakMB
0
MaxAllocRateMBSec
0
TotalAllocatedMB
0
TotalCpuMSec
0
TotalPromotedMB
0
TotalSizeAfterMB
0
TotalSizePeakMB
0
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking(empty)
BGCs(empty)
GCThreadIDsToHeapNumbers(empty)
DurationMSec
39109.4829
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="52508"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionCloseHttpSys_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 4:16:54 PM"\\r\\n SessionEndTime="8/21/2023 4:17:38 PM"\\r\\n SessionDuration=...
Events
[ <Event MSec= "0.0000" PID="11908" PName="PerfView" TID="10404" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 4:17:35 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="167" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 4:16:54 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="11908" PName="PerfView" TID="10404" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "11.1397" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="11908" PName="PerfView" TID="10404" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "11.1078" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "11.1397" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "11.1601" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "11.1601" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", - "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337145154153.8
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="11908" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="155.9829" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmp1DE8.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="44086.5455" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", - "
Count127
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="10404" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337145154153.8" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337145154153.8" /> ... (more) ]
Count1558
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", - "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="120" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1389" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="139" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="27" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="12" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", - " ... (more) ]
Count77
(values)
indexvalue
0\r\n", - "
1\r\n", - "
2\r\n", - "
3\r\n", - "
4\r\n", - "
5\r\n", - "
6\r\n", - "
7\r\n", - "
8\r\n", - "
9\r\n", - "
10\r\n", - "
11\r\n", - "
12\r\n", - "
13\r\n", - "
14\r\n", - "
15\r\n", - "
16\r\n", - "
17\r\n", - "
18\r\n", - "
19\r\n", - "
... (more)
MaxEventIndex52508
EventCount
52508
Size
10271086
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionCloseHttpSys_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", - "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", - "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", - "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", - "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", - " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", - " at lambda_method760(Closure, TraceLog)\r\n", - " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 16:16:54Z
SessionEndTime2023-08-21 16:17:38Z
SessionEndTimeRelativeMSec
44086.5455
SessionDuration00:00:44.0865455
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [118, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [112, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [110, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [105, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [104, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [102, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [103, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [100, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [98, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [120, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [121, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionCloseHttpSys_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
Benchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\rxgapyjw.hah\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios Plaintext --urls http://10.0.0.104:5000 --server HttpSys --kestrelTransport Sockets --protocol http 
NumberOfHeapCountSwitches
1
Benchmark
ConnectionCloseHttpSys
Id
datas_3 | ConnectionCloseHttpSys
TotalSuspensionTimeMSec
160.22180000005937
PercentPauseTimeInGC
3.5085265371234837
PercentTimeInGC
2.9780924924093712
MeanHeapSizeBeforeMB
15.60437111975436
MaxHeapSizeMB
15.976064000000003
TotalAllocationsMB
12232.206520000014
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionCloseHttpSys_Windows.gc.etl.zip
ProcessName
Benchmarks
datas_3 | ConnectionCloseHttps
Submission#4+LoadInfo
WorkingSetMB
89
PrivateMemoryMB
56
Latency50thMS
0.18
Latency75thMS
0.23
Latency90thMS
0.46
Latency99thMS
3
MeanLatencyMS
0.38
ProcessId
8756
RequestsPerMSec
8.961
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
Benchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\rdhunxoe.g2x\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios Plaintext --urls https://10.0.0.104:5000 --server Kestrel --kestrelTransport Sockets --protocol https 
ProcessID
8756
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.020816
PromotedMB
1.28324
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5616.6416
DurationMSec
8.359000000000378
PauseDurationMSec
8.655399999999645
SuspendDurationMSec
0.008399999999710417
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
5616.4205
PauseStartRelativeMSec
5616.4205
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4020816
TotalPromoted1283240
Depth0
GenerationSize00
TotalPromotedSize01283240
GenerationSize13711816
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize29770
FinalizationPromotedCount19
PinnedObjectCount78
SinkBlockCount3
GCHandleCount615
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
0.6809941066688951
AllocRateMBSec
0
HeapSizePeakMB
2.7381520000000004
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.7381520000000004
GenSizeBeforeMB
[ 2.629872, 0, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
0.15387170153561208
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
7.29204
PromotedMB
1.952456
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
5651.5483
DurationMSec
4.189499999999498
PauseDurationMSec
4.3585000000002765
SuspendDurationMSec
0.11920000000009168
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
26.400799999999435
PauseStartRelativeMSec
5651.4027
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize7292040
TotalPromoted1952456
Depth1
GenerationSize04979568
TotalPromotedSize0834696
GenerationSize1828304
TotalPromotedSize11117760
GenerationSize21101008
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4274880
TotalPromotedSize40
FinalizationPromotedSize1256
FinalizationPromotedCount21
PinnedObjectCount9
SinkBlockCount4
GCHandleCount718
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.37212
RatioPeakAfter
0.8833928502860653
AllocRateMBSec
89.8503075664393
HeapSizePeakMB
6.441736
UserAllocated
[ 2.37212, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.441736
GenSizeBeforeMB
[ 2.62164, 3.711816, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
14.169698270117712
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.327336
PromotedMB
0.125032
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5675.7743
DurationMSec
1.6611000000002605
PauseDurationMSec
1.7201999999997497
SuspendDurationMSec
0.026899999999841384
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
19.991299999999683
PauseStartRelativeMSec
5675.7302
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4327336
TotalPromoted125032
Depth0
GenerationSize02010744
TotalPromotedSize0125032
GenerationSize1828304
TotalPromotedSize10
GenerationSize21101008
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4279000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount3
GCHandleCount708
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount2008136
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.54556
RatioPeakAfter
1.6215888944144852
AllocRateMBSec
127.33339002466275
HeapSizePeakMB
7.0171600000000005
UserAllocated
[ 2.54556, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.0171600000000005
GenSizeBeforeMB
[ 4.979568, 0.828304, 1.101008, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
7.922990120442138
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
7.371464
PromotedMB
0.8302
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
5716.6287
DurationMSec
2.1138999999993757
PauseDurationMSec
2.237099999999373
SuspendDurationMSec
0.0510999999996784
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
39.10159999999996
PauseStartRelativeMSec
5716.5379
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize7371464
TotalPromoted830200
Depth1
GenerationSize05052336
TotalPromotedSize076200
GenerationSize176840
TotalPromotedSize1754000
GenerationSize21855008
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4279000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount4
GCHandleCount695
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration1
Gen0ReductionCount5076
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
4.878704
RatioPeakAfter
0.9721976530035283
AllocRateMBSec
124.76993268817655
HeapSizePeakMB
7.16652
UserAllocated
[ 4.878672, 0, 0, 3.200000000000425E-05, 0 ]
HeapSizeBeforeMB
7.16652
GenSizeBeforeMB
[ 5.128928, 0.828304, 1.101008, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.411636069831438
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.987872
PromotedMB
0.09076
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
5
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5759.1908
DurationMSec
1.5717999999997119
PauseDurationMSec
1.7031000000006316
SuspendDurationMSec
0.08470000000033906
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
40.330299999999625
PauseStartRelativeMSec
5759.074
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4987872
TotalPromoted90760
Depth0
GenerationSize02577072
TotalPromotedSize090760
GenerationSize1168512
TotalPromotedSize10
GenerationSize21855008
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4279000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount7
SinkBlockCount4
GCHandleCount708
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount1050
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.085088
RatioPeakAfter
1.4768109526467397
AllocRateMBSec
126.08604448764446
HeapSizePeakMB
7.366143999999999
UserAllocated
[ 5.085088, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.366143999999999
GenSizeBeforeMB
[ 5.326016, 0.07684, 1.855008, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
4.051777871884314
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
7.593328
PromotedMB
0.111512
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5800.6498
DurationMSec
1.7076999999999316
PauseDurationMSec
1.8524999999999636
SuspendDurationMSec
0.09069999999974243
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
39.759500000000116
PauseStartRelativeMSec
5800.5233
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize7593328
TotalPromoted111512
Depth0
GenerationSize05069776
TotalPromotedSize0111512
GenerationSize1281264
TotalPromotedSize10
GenerationSize21855008
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4279000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount4
GCHandleCount718
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount37
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.058592
RatioPeakAfter
0.965379080160899
AllocRateMBSec
127.22976898602812
HeapSizePeakMB
7.3304399999999985
UserAllocated
[ 5.058592, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.3304399999999985
GenSizeBeforeMB
[ 5.198639999999999, 0.168512, 1.855008, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
4.45184081514938
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
6.933048
PromotedMB
0.101232
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
5859.8743
DurationMSec
1.4501000000000204
PauseDurationMSec
1.623000000000502
SuspendDurationMSec
0.07920000000012806
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
57.376500000000306
PauseStartRelativeMSec
5859.7351
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6933048
TotalPromoted101232
Depth1
GenerationSize04589072
TotalPromotedSize074784
GenerationSize175240
TotalPromotedSize126448
GenerationSize21881456
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4279000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount6
SinkBlockCount7
GCHandleCount747
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration1
Gen0ReductionCount40
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.228648
RatioPeakAfter
1.3883186731146242
AllocRateMBSec
125.98621386804635
HeapSizePeakMB
9.62528
UserAllocated
[ 7.228648, 0, 0, 0, 0 ]
HeapSizeBeforeMB
9.62528
GenSizeBeforeMB
[ 7.3807279999999995, 0.28126399999999996, 1.855008, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.750870770092085
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
7.584624
PromotedMB
0.119312
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5921.9526
DurationMSec
1.0476000000007843
PauseDurationMSec
1.1833000000005995
SuspendDurationMSec
0.07120000000031723
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
60.50720000000001
PauseStartRelativeMSec
5921.8326
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize7584624
TotalPromoted119312
Depth0
GenerationSize05120576
TotalPromotedSize0119312
GenerationSize1195312
TotalPromotedSize10
GenerationSize21881456
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4279000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount5
GCHandleCount798
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount24
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.64376
RatioPeakAfter
1.2984227036172127
AllocRateMBSec
126.32810640717136
HeapSizePeakMB
9.848047999999999
UserAllocated
[ 7.64376, 0, 0, 0, 0 ]
HeapSizeBeforeMB
9.848047999999999
GenSizeBeforeMB
[ 7.783071999999999, 0.07524, 1.881456, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.918123536039727
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
7.661392
PromotedMB
0.073936
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5984.0767
DurationMSec
0.9446000000007189
PauseDurationMSec
1.0756000000001222
SuspendDurationMSec
0.06500000000050932
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
60.959899999999834
PauseStartRelativeMSec
5983.9612
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize7661392
TotalPromoted73936
Depth0
GenerationSize05122816
TotalPromotedSize073936
GenerationSize1269840
TotalPromotedSize10
GenerationSize21881456
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4279000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount5
GCHandleCount847
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount16
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.630912
RatioPeakAfter
1.302241681407243
AllocRateMBSec
125.17920797114203
HeapSizePeakMB
9.976984000000002
UserAllocated
[ 7.630912, 0, 0, 0, 0 ]
HeapSizeBeforeMB
9.976984000000002
GenSizeBeforeMB
[ 7.791936, 0.19531199999999999, 1.881456, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.7338459430489366
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
7.617952
PromotedMB
0.084896
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6045.0597
DurationMSec
0.9542000000001281
PauseDurationMSec
1.0498999999999796
SuspendDurationMSec
0.010000000000218279
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
59.95640000000003
PauseStartRelativeMSec
6044.9788
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize7617952
TotalPromoted84896
Depth0
GenerationSize04993720
TotalPromotedSize084896
GenerationSize1355496
TotalPromotedSize10
GenerationSize21881456
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4279000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount5
GCHandleCount899
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount14
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.663384
RatioPeakAfter
1.3229308874616172
AllocRateMBSec
127.81594625427805
HeapSizePeakMB
10.078024000000001
UserAllocated
[ 7.663384, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.078024000000001
GenSizeBeforeMB
[ 7.818448, 0.26983999999999997, 1.881456, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.7209698014794856
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
9.6406
PromotedMB
0.085408
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6105.7822
DurationMSec
1.0703000000003158
PauseDurationMSec
1.1752999999998792
SuspendDurationMSec
0.03179999999974825
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
59.67910000000029
PauseStartRelativeMSec
6105.694
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9640600
TotalPromoted85408
Depth0
GenerationSize06930584
TotalPromotedSize085408
GenerationSize1441280
TotalPromotedSize10
GenerationSize21881456
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4279000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount8
SinkBlockCount4
GCHandleCount947
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount15
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.64912
RatioPeakAfter
1.0521677074041038
AllocRateMBSec
128.17083367544018
HeapSizePeakMB
10.143528000000002
UserAllocated
[ 7.64912, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.143528000000002
GenSizeBeforeMB
[ 7.798296000000001, 0.35549600000000003, 1.881456, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.9313311773674147
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
7.959496
PromotedMB
0.078328
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6168.0517
DurationMSec
1.0083999999997104
PauseDurationMSec
1.11200000000008
SuspendDurationMSec
0.03920000000016444
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
61.110899999999674
PauseStartRelativeMSec
6167.9645
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize7959496
TotalPromoted78328
Depth0
GenerationSize05170408
TotalPromotedSize078328
GenerationSize1520352
TotalPromotedSize10
GenerationSize21881456
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4279000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount3
GCHandleCount987
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount17
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.678232000000001
RatioPeakAfter
1.2879498902945616
AllocRateMBSec
125.64423040734209
HeapSizePeakMB
10.251432000000001
UserAllocated
[ 7.678232000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.251432000000001
GenSizeBeforeMB
[ 7.820416, 0.44128, 1.881456, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.787123390263206
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
8.02464
PromotedMB
0.0956
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6227.284
DurationMSec
1.1020000000007713
PauseDurationMSec
1.2866999999996551
SuspendDurationMSec
0.10089999999945576
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
58.05580000000009
PauseStartRelativeMSec
6227.117
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8024640
TotalPromoted95600
Depth0
GenerationSize05139192
TotalPromotedSize095600
GenerationSize1616712
TotalPromotedSize10
GenerationSize21881456
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4279000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount8
GCHandleCount1031
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount15
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.622935999999999
RatioPeakAfter
1.2886070901623004
AllocRateMBSec
131.30360790825358
HeapSizePeakMB
10.340608000000001
UserAllocated
[ 7.622935999999999, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.340608000000001
GenSizeBeforeMB
[ 7.83052, 0.520352, 1.881456, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.1682605215480653
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.481232
PromotedMB
0.099104
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6284.4374
DurationMSec
1.0585000000000946
PauseDurationMSec
1.1871000000001004
SuspendDurationMSec
0.06040000000029977
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
55.9384
PauseStartRelativeMSec
6284.3255
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5481232
TotalPromoted99104
Depth0
GenerationSize02479304
TotalPromotedSize099104
GenerationSize1716712
TotalPromotedSize10
GenerationSize21881456
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4295480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount4
GCHandleCount1092
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount18
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.524176
RatioPeakAfter
1.876982401036847
AllocRateMBSec
134.5082447835476
HeapSizePeakMB
10.288176
UserAllocated
[ 7.524176, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.288176
GenSizeBeforeMB
[ 7.681728, 0.6167119999999999, 1.881456, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.07805620957383
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.79184
PromotedMB
0.086848
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6343.4412
DurationMSec
0.9789999999993597
PauseDurationMSec
1.0523000000002867
SuspendDurationMSec
0.008800000000519503
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
57.884799999999814
PauseStartRelativeMSec
6343.3817
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10791840
TotalPromoted86848
Depth0
GenerationSize07702424
TotalPromotedSize086848
GenerationSize1804200
TotalPromotedSize10
GenerationSize21881456
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4295480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount4
GCHandleCount1133
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount18
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.62552
RatioPeakAfter
0.9719469525122685
AllocRateMBSec
131.73613798441082
HeapSizePeakMB
10.489096
UserAllocated
[ 7.62552, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.489096
GenSizeBeforeMB
[ 7.782648, 0.716712, 1.881456, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.7854628069590883
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.887512
PromotedMB
0.09316
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6401.586
DurationMSec
1.1484999999993306
PauseDurationMSec
1.3624999999992724
SuspendDurationMSec
0.14589999999952852
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
56.96780000000035
PauseStartRelativeMSec
6401.3891
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10887512
TotalPromoted93160
Depth0
GenerationSize07798096
TotalPromotedSize093160
GenerationSize1804200
TotalPromotedSize10
GenerationSize21881456
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4295480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount4
GCHandleCount1184
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount16
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.696488
RatioPeakAfter
0.9780239966670072
AllocRateMBSec
135.1024262829169
HeapSizePeakMB
10.648248
UserAllocated
[ 7.696488, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.648248
GenSizeBeforeMB
[ 7.854312, 0.8042, 1.881456, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.3358357491720105
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.864472
PromotedMB
0.088056
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6459.1682
DurationMSec
0.9938999999994849
PauseDurationMSec
1.128500000000713
SuspendDurationMSec
0.04150000000026921
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
56.3157999999994
PauseStartRelativeMSec
6459.0515
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10864472
TotalPromoted88056
Depth0
GenerationSize07775056
TotalPromotedSize088056
GenerationSize1804200
TotalPromotedSize10
GenerationSize21881456
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4295480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount5
GCHandleCount1232
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount19
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.596576000000001
RatioPeakAfter
0.9816554361776624
AllocRateMBSec
134.89244581449756
HeapSizePeakMB
10.665168
UserAllocated
[ 7.596576000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.665168
GenSizeBeforeMB
[ 7.871231999999999, 0.8042, 1.881456, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.9645117096051494
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.6798
PromotedMB
0.089856
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6514.5336
DurationMSec
1.0165999999999258
PauseDurationMSec
1.1419999999998254
SuspendDurationMSec
0.05969999999979336
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
54.258600000000115
PauseStartRelativeMSec
6514.4218
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10679800
TotalPromoted89856
Depth0
GenerationSize07590384
TotalPromotedSize089856
GenerationSize1804200
TotalPromotedSize10
GenerationSize21881456
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4295480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount4
GCHandleCount1268
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount17
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.410400000000001
RatioPeakAfter
0.9936283451000956
AllocRateMBSec
136.57558433133153
HeapSizePeakMB
10.611752000000001
UserAllocated
[ 7.410400000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.611752000000001
GenSizeBeforeMB
[ 7.817816, 0.8042, 1.881456, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.0613495160699102
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.74872
PromotedMB
0.075192
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6569.8377
DurationMSec
1.1679000000003725
PauseDurationMSec
1.2689000000000306
SuspendDurationMSec
0.03709999999955471
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
54.198600000000624
PauseStartRelativeMSec
6569.7502
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10748720
TotalPromoted75192
Depth0
GenerationSize07659304
TotalPromotedSize075192
GenerationSize1804200
TotalPromotedSize10
GenerationSize21881456
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4295480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount4
GCHandleCount1310
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount17
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.4972
RatioPeakAfter
0.9872118726694901
AllocRateMBSec
138.32829630285494
HeapSizePeakMB
10.611264000000002
UserAllocated
[ 7.4972, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.611264000000002
GenSizeBeforeMB
[ 7.817328000000001, 0.8042, 1.881456, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.2876459187812963
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.782008
PromotedMB
0.132544
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6626.9285
DurationMSec
1.2372999999997774
PauseDurationMSec
1.3948999999993248
SuspendDurationMSec
0.09149999999954161
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
55.78220000000056
PauseStartRelativeMSec
6626.7888
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5782008
TotalPromoted132544
Depth0
GenerationSize02676112
TotalPromotedSize0132544
GenerationSize1804200
TotalPromotedSize10
GenerationSize21881456
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4311960
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount3
GCHandleCount1365
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount20
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.5920879999999995
RatioPeakAfter
1.8450019439613365
AllocRateMBSec
136.10234089010336
HeapSizePeakMB
10.667816
UserAllocated
[ 7.5920879999999995, 0, 0, 0, 0 ]
HeapSizeBeforeMB
10.667816
GenSizeBeforeMB
[ 7.87388, 0.8042, 1.881456, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.439613061871497
(462 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.140151452282048
MeanSizeAfterMB
8.352649344398337
MeanSizePeakMB
11.280890970954369
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
482
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
13.596199999999953
TotalPauseTimeMSec
549.5529999999471
MaxSuspendDurationMSec
0.14710000000195578
MaxSizePeakMB
11.730088000000002
MaxAllocRateMBSec
183.42945306240236
TotalAllocatedMB
3625.835504
TotalCpuMSec
0
TotalPromotedMB
70.039448
TotalSizeAfterMB
4025.976983999998
TotalSizePeakMB
5437.389448000005
FinalizedObjects(empty)
ProcessDuration
30082.624499999998
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.1301344467639811
MeanSizeAfterMB
8.359875640918576
MeanSizePeakMB
11.303039482254707
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
479
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
13.596199999999953
TotalPauseTimeMSec
541.334399999947
MaxSuspendDurationMSec
0.14710000000195578
MaxSizePeakMB
11.730088000000002
MaxAllocRateMBSec
183.42945306240236
TotalAllocatedMB
3611.356032000001
TotalCpuMSec
0
TotalPromotedMB
67.15556000000004
TotalSizeAfterMB
4004.380431999998
TotalSizePeakMB
5414.155912000005
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
2.739533333333384
MeanSizeAfterMB
7.198850666666666
MeanSizePeakMB
7.744512
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
3
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
4.3585000000002765
TotalPauseTimeMSec
8.218600000000151
MaxSuspendDurationMSec
0.11920000000009168
MaxSizePeakMB
9.62528
MaxAllocRateMBSec
125.98621386804635
TotalAllocatedMB
14.479472
TotalCpuMSec
0
TotalPromotedMB
2.8838880000000002
TotalSizeAfterMB
21.596552
TotalSizePeakMB
23.233536
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
NaN
MeanSizeAfterMB
NaN
MeanSizePeakMB
NaN
MeanCpuMSec
NaN
Interesting
False
GCVersionInfoMismatch
False
Count
0
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
0
TotalPauseTimeMSec
0
MaxSuspendDurationMSec
0
MaxSizePeakMB
0
MaxAllocRateMBSec
0
TotalAllocatedMB
0
TotalCpuMSec
0
TotalPromotedMB
0
TotalSizeAfterMB
0
TotalSizePeakMB
0
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking(empty)
BGCs(empty)
GCThreadIDsToHeapNumbers(empty)
DurationMSec
38373.578100000006
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="20325"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionCloseHttps_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 4:24:57 PM"\\r\\n SessionEndTime="8/21/2023 4:25:40 PM"\\r\\n SessionDuration="0...
Events
[ <Event MSec= "0.0000" PID="9312" PName="PerfView" TID="6384" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 4:25:37 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="91" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 4:24:57 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="9312" PName="PerfView" TID="6384" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "11.6455" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="9312" PName="PerfView" TID="6384" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "11.6134" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "11.6455" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "11.6659" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "11.6659" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", - "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337144670503.1
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="9312" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="156.383" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmp7F33.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="42319.657" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", - "
Count107
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="6384" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337144670503.1" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337144670503.1" /> ... (more) ]
Count1479
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", - "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="103" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1254" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="193" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Stop" Count="227" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="27" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="4" StackCount="0"/>\r\n", - " ... (more) ]
Count77
(values)
indexvalue
0\r\n", - "
1\r\n", - "
2\r\n", - "
3\r\n", - "
4\r\n", - "
5\r\n", - "
6\r\n", - "
7\r\n", - "
8\r\n", - "
9\r\n", - "
10\r\n", - "
11\r\n", - "
12\r\n", - "
13\r\n", - "
14\r\n", - "
15\r\n", - "
16\r\n", - "
17\r\n", - "
18\r\n", - "
19\r\n", - "
... (more)
MaxEventIndex20325
EventCount
20325
Size
4587082
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionCloseHttps_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", - "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", - "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", - "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", - "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", - " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", - " at lambda_method760(Closure, TraceLog)\r\n", - " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 16:24:57Z
SessionEndTime2023-08-21 16:25:40Z
SessionEndTimeRelativeMSec
42319.657
SessionDuration00:00:42.3196570
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [101, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [103, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [104, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionCloseHttps_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
Benchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\rdhunxoe.g2x\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios Plaintext --urls https://10.0.0.104:5000 --server Kestrel --kestrelTransport Sockets --protocol https 
NumberOfHeapCountSwitches
2
Benchmark
ConnectionCloseHttps
Id
datas_3 | ConnectionCloseHttps
TotalSuspensionTimeMSec
16.31259999998929
PercentPauseTimeInGC
1.826812019010998
PercentTimeInGC
1.7725860321793327
MeanHeapSizeBeforeMB
11.280890970954369
MaxHeapSizeMB
11.730088000000002
TotalAllocationsMB
3625.835504
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionCloseHttps_Windows.gc.etl.zip
ProcessName
Benchmarks
datas_3 | ConnectionClose
Submission#4+LoadInfo
WorkingSetMB
64
PrivateMemoryMB
35
Latency50thMS
0.24
Latency75thMS
1.72
Latency90thMS
1.89
Latency99thMS
3
MeanLatencyMS
0.92
ProcessId
8808
RequestsPerMSec
11.352
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
Benchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\gi2cj4t4.uuc\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios Plaintext --urls http://10.0.0.104:5000 --server Kestrel --kestrelTransport Sockets --protocol http 
ProcessID
8808
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.132352
PromotedMB
0.815448
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6104.0479
DurationMSec
3.90690000000086
PauseDurationMSec
4.215700000000652
SuspendDurationMSec
0.07410000000072614
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
6103.7867
PauseStartRelativeMSec
6103.7867
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1132352
TotalPromoted815448
Depth0
GenerationSize0584
TotalPromotedSize0815448
GenerationSize1826888
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4196600
TotalPromotedSize40
FinalizationPromotedSize29770
FinalizationPromotedCount19
PinnedObjectCount1
SinkBlockCount3
GCHandleCount448
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
2.410826315492003
AllocRateMBSec
0
HeapSizePeakMB
2.7299040000000003
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.7299040000000003
GenSizeBeforeMB
[ 2.621624, 0, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
0.0690192918064448
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
1.719776
PromotedMB
0.784528
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6129.0997
DurationMSec
2.5183999999999287
PauseDurationMSec
2.597899999999754
SuspendDurationMSec
0.05069999999977881
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
21.07220000000052
PauseStartRelativeMSec
6129.028
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1719776
TotalPromoted784528
Depth1
GenerationSize0584
TotalPromotedSize011672
GenerationSize1641592
TotalPromotedSize1772856
GenerationSize2772720
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4196600
TotalPromotedSize40
FinalizationPromotedSize568
FinalizationPromotedCount19
PinnedObjectCount2
SinkBlockCount3
GCHandleCount449
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.562552
RatioPeakAfter
2.0681484100254917
AllocRateMBSec
121.60818519186117
HeapSizePeakMB
3.556752
UserAllocated
[ 2.562552, 0, 0, 0, 0 ]
HeapSizeBeforeMB
3.556752
GenSizeBeforeMB
[ 2.621584, 0.826888, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
10.975450040345093
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2N
HeapSizeAfterMB
1.740464
PromotedMB
0.897512
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
6151.0642
DurationMSec
2.579000000000633
PauseDurationMSec
2.649800000000141
SuspendDurationMSec
0.04650000000037835
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
19.385400000000118
PauseStartRelativeMSec
6151.0044
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1740464
TotalPromoted897512
Depth2
GenerationSize0642176
TotalPromotedSize016344
GenerationSize116504
TotalPromotedSize1200
GenerationSize2772784
TotalPromotedSize2772720
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize184
FinalizationPromotedCount3
PinnedObjectCount2
SinkBlockCount3
GCHandleCount434
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration2
Gen0ReductionCount105
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.543016
RatioPeakAfter
2.38108918081615
AllocRateMBSec
131.18202358475887
HeapSizePeakMB
4.1442
UserAllocated
[ 2.543016, 0, 0, 0, 0 ]
HeapSizeBeforeMB
4.1442
GenSizeBeforeMB
[ 2.621608, 0.641592, 0.77272, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
12.025304966599396
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
1.09428
PromotedMB
0.0118
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6196.6079
DurationMSec
0.8838999999998123
PauseDurationMSec
1.0596999999997934
SuspendDurationMSec
0.0988999999999578
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
42.814800000000105
PauseStartRelativeMSec
6196.4592
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1094280
TotalPromoted11800
Depth1
GenerationSize0584
TotalPromotedSize011760
GenerationSize111872
TotalPromotedSize140
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount3
GCHandleCount432
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration1
Gen0ReductionCount114
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
4.789696
RatioPeakAfter
5.269444749058741
AllocRateMBSec
111.87010099311425
HeapSizePeakMB
5.766247999999999
UserAllocated
[ 4.789664, 0, 0, 3.200000000000425E-05, 0 ]
HeapSizeBeforeMB
5.766247999999999
GenSizeBeforeMB
[ 4.8686799999999995, 0.016504, 0.772784, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.4152981800357742
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.11492
PromotedMB
0.020408
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
5
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6242.6815
DurationMSec
0.6033000000006723
PauseDurationMSec
0.686399999999594
SuspendDurationMSec
0.0500000000001819
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
45.115099999999984
PauseStartRelativeMSec
6242.6079
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1114920
TotalPromoted20408
Depth0
GenerationSize0584
TotalPromotedSize020408
GenerationSize132512
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount435
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount20
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
4.9237280000000005
RatioPeakAfter
5.294069529652353
AllocRateMBSec
109.13702950896713
HeapSizePeakMB
5.902464
UserAllocated
[ 4.9237280000000005, 0, 0, 0, 0 ]
HeapSizeBeforeMB
5.902464
GenSizeBeforeMB
[ 5.009488, 0.011872, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.498640874206304
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.139064
PromotedMB
0.023864
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6288.5681
DurationMSec
0.6415999999999258
PauseDurationMSec
0.7002000000002226
SuspendDurationMSec
0.025300000000243017
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
45.23229999999967
PauseStartRelativeMSec
6288.518
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1139064
TotalPromoted23864
Depth0
GenerationSize0584
TotalPromotedSize023864
GenerationSize156656
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount5
GCHandleCount437
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.132792
RatioPeakAfter
5.387216170469789
AllocRateMBSec
113.47625480022104
HeapSizePeakMB
6.136384
UserAllocated
[ 5.132792, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.136384
GenSizeBeforeMB
[ 5.222768, 0.032512, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.524410820225819
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.158096
PromotedMB
0.018872
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6334.5691
DurationMSec
0.6071000000001732
PauseDurationMSec
0.6882000000005064
SuspendDurationMSec
0.04569999999966967
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
45.28700000000026
PauseStartRelativeMSec
6334.4977
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1158096
TotalPromoted18872
Depth0
GenerationSize0584
TotalPromotedSize018872
GenerationSize175688
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount3
GCHandleCount441
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.0152719999999995
RatioPeakAfter
5.212307097166383
AllocRateMBSec
110.74418707355248
HeapSizePeakMB
6.036352
UserAllocated
[ 5.0152719999999995, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.036352
GenSizeBeforeMB
[ 5.098592, 0.056656, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.4968939776237948
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.177568
PromotedMB
0.019264
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6380.9486
DurationMSec
0.6485000000002401
PauseDurationMSec
0.7622000000001208
SuspendDurationMSec
0.07800000000042928
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
45.66949999999997
PauseStartRelativeMSec
6380.8466
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1177568
TotalPromoted19264
Depth0
GenerationSize0584
TotalPromotedSize019264
GenerationSize195160
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount444
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
4.957952000000001
RatioPeakAfter
5.096510774749314
AllocRateMBSec
108.56155639978549
HeapSizePeakMB
6.001488
UserAllocated
[ 4.957952000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.001488
GenSizeBeforeMB
[ 5.044696, 0.075688, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.6415509231842023
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.206584
PromotedMB
0.028712
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6426.8491
DurationMSec
0.7647999999999229
PauseDurationMSec
0.8046999999996842
SuspendDurationMSec
0.00709999999980937
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
45.21979999999985
PauseStartRelativeMSec
6426.8179
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1206584
TotalPromoted28712
Depth0
GenerationSize0584
TotalPromotedSize028712
GenerationSize1124176
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount3
GCHandleCount446
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.0089760000000005
RatioPeakAfter
5.0415321270628475
AllocRateMBSec
110.76953016156678
HeapSizePeakMB
6.083031999999999
UserAllocated
[ 5.0089760000000005, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.083031999999999
GenSizeBeforeMB
[ 5.106768, 0.09516, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.7484166041992686
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.226912
PromotedMB
0.02012
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6471.9066
DurationMSec
0.7151999999996406
PauseDurationMSec
0.7860000000000582
SuspendDurationMSec
0.02809999999954016
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
44.23240000000078
PauseStartRelativeMSec
6471.8473
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1226912
TotalPromoted20120
Depth0
GenerationSize0584
TotalPromotedSize020120
GenerationSize1144504
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount449
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount16
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.0608319999999996
RatioPeakAfter
5.001832242247203
AllocRateMBSec
114.41459201851833
HeapSizePeakMB
6.136808
UserAllocated
[ 5.0608319999999996, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.136808
GenSizeBeforeMB
[ 5.131528, 0.12417600000000001, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.7459527659802294
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.250336
PromotedMB
0.023168
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6516.5134
DurationMSec
0.6419000000005326
PauseDurationMSec
0.6846000000005006
SuspendDurationMSec
0.0072000000000116415
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
43.85620000000017
PauseStartRelativeMSec
6516.4792
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1250336
TotalPromoted23168
Depth0
GenerationSize0584
TotalPromotedSize023168
GenerationSize1167928
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount3
GCHandleCount453
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount15
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.110472
RatioPeakAfter
4.972551378189543
AllocRateMBSec
116.52792535604954
HeapSizePeakMB
6.21736
UserAllocated
[ 5.110472, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.21736
GenSizeBeforeMB
[ 5.191752, 0.144504, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.5370177455287966
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.267584
PromotedMB
0.017088
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6560.6955
DurationMSec
0.6319000000003143
PauseDurationMSec
0.6723999999994703
SuspendDurationMSec
0.007599999999911233
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
43.50710000000072
PauseStartRelativeMSec
6560.6634
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1267584
TotalPromoted17088
Depth0
GenerationSize0584
TotalPromotedSize017088
GenerationSize1185176
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount3
GCHandleCount457
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount14
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.121416
RatioPeakAfter
4.959481975159043
AllocRateMBSec
117.71448798012085
HeapSizePeakMB
6.28656
UserAllocated
[ 5.121416, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.28656
GenSizeBeforeMB
[ 5.237528, 0.16792800000000002, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.5219728607147374
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.290184
PromotedMB
0.022368
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6604.1971
DurationMSec
0.619699999999284
PauseDurationMSec
0.6739000000006854
SuspendDurationMSec
0.012400000000525324
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
42.82380000000012
PauseStartRelativeMSec
6604.1523
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1290184
TotalPromoted22368
Depth0
GenerationSize0584
TotalPromotedSize022368
GenerationSize1207776
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount3
GCHandleCount459
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount14
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.132175999999999
RatioPeakAfter
4.877319824149113
AllocRateMBSec
119.84401197464926
HeapSizePeakMB
6.29264
UserAllocated
[ 5.132175999999999, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.29264
GenSizeBeforeMB
[ 5.22636, 0.185176, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.5492773181126196
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.311368
PromotedMB
0.01688
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6647.2385
DurationMSec
0.6048999999993612
PauseDurationMSec
0.6442999999999302
SuspendDurationMSec
0.00709999999980937
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
42.38889999999992
PauseStartRelativeMSec
6647.2068
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1311368
TotalPromoted16880
Depth0
GenerationSize0584
TotalPromotedSize016880
GenerationSize1224840
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4204840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount3
GCHandleCount459
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount14
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.087656000000001
RatioPeakAfter
4.778472556902409
AllocRateMBSec
120.02330798864821
HeapSizePeakMB
6.266335999999999
UserAllocated
[ 5.087656000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.266335999999999
GenSizeBeforeMB
[ 5.177455999999999, 0.207776, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.4972161029157312
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.32044
PromotedMB
0.008984
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6690.0337
DurationMSec
0.5784000000003289
PauseDurationMSec
0.6165999999993801
SuspendDurationMSec
0.006199999999807915
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
42.15760000000046
PauseStartRelativeMSec
6690.002
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1320440
TotalPromoted8984
Depth0
GenerationSize0584
TotalPromotedSize08984
GenerationSize1233912
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4204840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount3
GCHandleCount463
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.153024
RatioPeakAfter
4.807191542213202
AllocRateMBSec
122.23238514526312
HeapSizePeakMB
6.347608
UserAllocated
[ 5.153024, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.347608
GenSizeBeforeMB
[ 5.241664, 0.22483999999999998, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.4415231611564505
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.337536
PromotedMB
0.016912
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6734.0324
DurationMSec
0.5652000000000044
PauseDurationMSec
0.610700000000179
SuspendDurationMSec
0.007799999999406282
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
43.384000000000015
PauseStartRelativeMSec
6733.9974
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1337536
TotalPromoted16912
Depth0
GenerationSize0584
TotalPromotedSize016912
GenerationSize1251008
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4204840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount467
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.07868
RatioPeakAfter
4.711349825350495
AllocRateMBSec
117.06343352387974
HeapSizePeakMB
6.3016
UserAllocated
[ 5.07868, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.3016
GenSizeBeforeMB
[ 5.186584, 0.233912, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.3881217510295019
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.3552
PromotedMB
0.017456
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6777.2655
DurationMSec
0.6365999999998166
PauseDurationMSec
0.677799999999479
SuspendDurationMSec
0.006499999999505235
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
42.63380000000052
PauseStartRelativeMSec
6777.2325
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1355200
TotalPromoted17456
Depth0
GenerationSize0584
TotalPromotedSize017456
GenerationSize1268672
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4204840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount3
GCHandleCount467
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.12568
RatioPeakAfter
4.691959858323495
AllocRateMBSec
120.22573638755958
HeapSizePeakMB
6.358543999999999
UserAllocated
[ 5.12568, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.358543999999999
GenSizeBeforeMB
[ 5.226432, 0.251008, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.5649387231122356
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.373992
PromotedMB
0.018608
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6821.3959
DurationMSec
0.6012999999993554
PauseDurationMSec
0.6721999999999753
SuspendDurationMSec
0.03290000000015425
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
43.43119999999999
PauseStartRelativeMSec
6821.3344
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1373992
TotalPromoted18608
Depth0
GenerationSize0584
TotalPromotedSize018608
GenerationSize1287464
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4204840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount468
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount14
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.068296
RatioPeakAfter
4.5881897420072315
AllocRateMBSec
116.69712096373118
HeapSizePeakMB
6.304136000000001
UserAllocated
[ 5.068296, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.304136000000001
GenSizeBeforeMB
[ 5.1543600000000005, 0.268672, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.5241455307300023
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.401616
PromotedMB
0.02732
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6865.5418
DurationMSec
0.6140000000004875
PauseDurationMSec
0.7811000000001513
SuspendDurationMSec
0.08259999999972933
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
43.38829999999962
PauseStartRelativeMSec
6865.3866
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1401616
TotalPromoted27320
Depth0
GenerationSize0584
TotalPromotedSize027320
GenerationSize1315088
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4204840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount3
GCHandleCount470
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.072168
RatioPeakAfter
4.519160740174199
AllocRateMBSec
116.90174540141108
HeapSizePeakMB
6.334128
UserAllocated
[ 5.072168, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.334128
GenSizeBeforeMB
[ 5.16556, 0.287464, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.7684188601161788
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.423976
PromotedMB
0.022128
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6908.9322
DurationMSec
0.6318999999994048
PauseDurationMSec
0.7088999999996304
SuspendDurationMSec
0.02959999999984575
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
42.707900000000336
PauseStartRelativeMSec
6908.8647
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1423976
TotalPromoted22128
Depth0
GenerationSize0584
TotalPromotedSize022128
GenerationSize1337448
TotalPromotedSize10
GenerationSize2772824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4204840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount472
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps2
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
5.037568
RatioPeakAfter
4.443681635083737
AllocRateMBSec
117.95400850896345
HeapSizePeakMB
6.3276959999999995
UserAllocated
[ 5.037568, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.3276959999999995
GenSizeBeforeMB
[ 5.131504, 0.315088, 0.772824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.6327780951144049
(672 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
0.7020166184972073
MeanSizeAfterMB
2.107683028901734
MeanSizePeakMB
6.720975942196532
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
692
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
4.871000000002823
TotalPauseTimeMSec
485.7955000000675
MaxSuspendDurationMSec
0.14469999999710126
MaxSizePeakMB
7.01136
MaxAllocRateMBSec
161.2038133454449
TotalAllocatedMB
3492.0721520000016
TotalCpuMSec
0
TotalPromotedMB
22.791944000000026
TotalSizeAfterMB
1458.516656
TotalSizePeakMB
4650.915352
FinalizedObjects(empty)
ProcessDuration
30053.7902
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
0.6959188679246266
MeanSizeAfterMB
2.110249834542816
MeanSizePeakMB
6.730693979680696
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
689
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
4.871000000002823
TotalPauseTimeMSec
479.4881000000678
MaxSuspendDurationMSec
0.14469999999710126
MaxSizePeakMB
7.01136
MaxAllocRateMBSec
161.2038133454449
TotalAllocatedMB
3482.176888000002
TotalCpuMSec
0
TotalPromotedMB
21.098104000000028
TotalSizeAfterMB
1453.962136
TotalSizePeakMB
4637.448152
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.8287999999997737
MeanSizeAfterMB
1.407028
MeanSizePeakMB
4.661499999999999
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
2
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
2.597899999999754
TotalPauseTimeMSec
3.6575999999995474
MaxSuspendDurationMSec
0.0988999999999578
MaxSizePeakMB
5.766247999999999
MaxAllocRateMBSec
121.60818519186117
TotalAllocatedMB
7.352248
TotalCpuMSec
0
TotalPromotedMB
0.796328
TotalSizeAfterMB
2.814056
TotalSizePeakMB
9.322999999999999
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
2.649800000000141
MeanSizeAfterMB
1.740464
MeanSizePeakMB
4.1442
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
2.649800000000141
TotalPauseTimeMSec
2.649800000000141
MaxSuspendDurationMSec
0.04650000000037835
MaxSizePeakMB
4.1442
MaxAllocRateMBSec
131.18202358475887
TotalAllocatedMB
2.543016
TotalCpuMSec
0
TotalPromotedMB
0.897512
TotalSizeAfterMB
1.740464
TotalSizePeakMB
4.1442
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2N
HeapSizeAfterMB
1.740464
PromotedMB
0.897512
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
6151.0642
DurationMSec
2.579000000000633
PauseDurationMSec
2.649800000000141
SuspendDurationMSec
0.04650000000037835
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
19.385400000000118
PauseStartRelativeMSec
6151.0044
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1740464
TotalPromoted897512
Depth2
GenerationSize0642176
TotalPromotedSize016344
GenerationSize116504
TotalPromotedSize1200
GenerationSize2772784
TotalPromotedSize2772720
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize184
FinalizationPromotedCount3
PinnedObjectCount2
SinkBlockCount3
GCHandleCount434
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration2
Gen0ReductionCount105
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.543016
RatioPeakAfter
2.38108918081615
AllocRateMBSec
131.18202358475887
HeapSizePeakMB
4.1442
UserAllocated
[ 2.543016, 0, 0, 0, 0 ]
HeapSizeBeforeMB
4.1442
GenSizeBeforeMB
[ 2.621608, 0.641592, 0.77272, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
12.025304966599396
BGCs(empty)
GCThreadIDsToHeapNumbers(empty)
DurationMSec
38999.303799999994
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="21483"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionClose_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 4:32:54 PM"\\r\\n SessionEndTime="8/21/2023 4:33:37 PM"\\r\\n SessionDuration="00:00:...
Events
[ <Event MSec= "0.0000" PID="2496" PName="PerfView" TID="10548" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 4:33:34 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="94" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 4:32:54 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="2496" PName="PerfView" TID="10548" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "4.9969" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="2496" PName="PerfView" TID="10548" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "4.9634" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "4.9969" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "5.0170" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "5.0170" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", - "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337144193981.5
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="2496" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="155.8754" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmpC4B8.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="42952.4959" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", - "
Count109
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="10548" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337144193981.5" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337144193981.5" /> ... (more) ]
Count1421
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", - "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="102" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1273" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="118" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="27" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", - " ... (more) ]
Count77
(values)
indexvalue
0\r\n", - "
1\r\n", - "
2\r\n", - "
3\r\n", - "
4\r\n", - "
5\r\n", - "
6\r\n", - "
7\r\n", - "
8\r\n", - "
9\r\n", - "
10\r\n", - "
11\r\n", - "
12\r\n", - "
13\r\n", - "
14\r\n", - "
15\r\n", - "
16\r\n", - "
17\r\n", - "
18\r\n", - "
19\r\n", - "
... (more)
MaxEventIndex21483
EventCount
21483
Size
4718974
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionClose_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", - "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", - "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", - "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", - "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", - " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", - " at lambda_method760(Closure, TraceLog)\r\n", - " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 16:32:54Z
SessionEndTime2023-08-21 16:33:37Z
SessionEndTimeRelativeMSec
42952.4959
SessionDuration00:00:42.9524959
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [100, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [102, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [103, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionClose_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
Benchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\gi2cj4t4.uuc\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios Plaintext --urls http://10.0.0.104:5000 --server Kestrel --kestrelTransport Sockets --protocol http 
NumberOfHeapCountSwitches
1
Benchmark
ConnectionClose
Id
datas_3 | ConnectionClose
TotalSuspensionTimeMSec
13.128600000019105
PercentPauseTimeInGC
1.616420081351561
PercentTimeInGC
1.5727364064717813
MeanHeapSizeBeforeMB
6.720975942196532
MaxHeapSizeMB
7.01136
TotalAllocationsMB
3492.0721520000016
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\ConnectionClose_Windows.gc.etl.zip
ProcessName
Benchmarks
datas_3 | FortunesDapper
Submission#4+LoadInfo
WorkingSetMB
165
PrivateMemoryMB
139
Latency50thMS
0.72
Latency75thMS
1
Latency90thMS
1.74
Latency99thMS
12
MeanLatencyMS
1.24
ProcessId
9848
RequestsPerMSec
304.666
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
Benchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\sbk0f5zj.xqa\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios DbFortunesDapper --urls http://10.0.0.104:5000 --server Kestrel --kestrelTransport Sockets --protocol 
ProcessID
9848
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.529128
PromotedMB
1.244456
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6337.9806
DurationMSec
5.990899999999783
PauseDurationMSec
6.318700000000717
SuspendDurationMSec
0.06860000000051514
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
6337.7094
PauseStartRelativeMSec
6337.7094
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1529128
TotalPromoted1244456
Depth0
GenerationSize0584
TotalPromotedSize01244456
GenerationSize11260744
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4159520
TotalPromotedSize40
FinalizationPromotedSize37556
FinalizationPromotedCount23
PinnedObjectCount1
SinkBlockCount3
GCHandleCount572
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.7858701168247524
AllocRateMBSec
0
HeapSizePeakMB
2.730824
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.730824
GenSizeBeforeMB
[ 2.622544, 0, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
0.09960075681254812
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
4.996832
PromotedMB
2.47108
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6366.5297
DurationMSec
7.754799999999705
PauseDurationMSec
7.889100000000326
SuspendDurationMSec
0.09379999999964639
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
22.440300000000207
PauseStartRelativeMSec
6366.4128
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4996832
TotalPromoted2471080
Depth1
GenerationSize02141704
TotalPromotedSize01270072
GenerationSize11279336
TotalPromotedSize11201008
GenerationSize21200872
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4266640
TotalPromotedSize40
FinalizationPromotedSize3120
FinalizationPromotedCount25
PinnedObjectCount3
SinkBlockCount5
GCHandleCount832
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.497552
RatioPeakAfter
0.7991047127459959
AllocRateMBSec
111.2976207982949
HeapSizePeakMB
3.9929920000000005
UserAllocated
[ 2.497552, 0, 0, 0, 0 ]
HeapSizeBeforeMB
3.9929920000000005
GenSizeBeforeMB
[ 2.623968, 1.260744, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
26.01139488417241
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.19804
PromotedMB
1.632096
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6382.553
DurationMSec
7.477899999999863
PauseDurationMSec
7.626100000000406
SuspendDurationMSec
0.12049999999999272
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
8.133899999999812
PauseStartRelativeMSec
6382.4194
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6198040
TotalPromoted1632096
Depth0
GenerationSize01681096
TotalPromotedSize01632096
GenerationSize12924672
TotalPromotedSize10
GenerationSize21200872
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4283120
TotalPromotedSize40
FinalizationPromotedSize48
FinalizationPromotedCount2
PinnedObjectCount2
SinkBlockCount5
GCHandleCount1049
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount253
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.41952
RatioPeakAfter
0.8423153125826875
AllocRateMBSec
297.46124245442604
HeapSizePeakMB
5.2207040000000005
UserAllocated
[ 2.41952, 0, 0, 0, 0 ]
HeapSizeBeforeMB
5.2207040000000005
GenSizeBeforeMB
[ 2.632216, 1.279336, 1.200872, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
48.38895939086485
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
7.75344
PromotedMB
3.139736
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6431.3659
DurationMSec
7.628099999999904
PauseDurationMSec
7.874499999999898
SuspendDurationMSec
0.13950000000022555
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
41.1264000000001
PauseStartRelativeMSec
6431.1581
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize7753440
TotalPromoted3139736
Depth1
GenerationSize02432160
TotalPromotedSize01111408
GenerationSize11671976
TotalPromotedSize12028328
GenerationSize23229064
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4311960
TotalPromotedSize40
FinalizationPromotedSize48
FinalizationPromotedCount2
PinnedObjectCount3
SinkBlockCount7
GCHandleCount1180
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration1
Gen0ReductionCount484
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.357487999999998
RatioPeakAfter
1.8680668193730783
AllocRateMBSec
227.5299564270146
HeapSizePeakMB
14.483944000000001
UserAllocated
[ 9.357455999999999, 0, 0, 3.200000000000425E-05, 0 ]
HeapSizeBeforeMB
14.483944000000001
GenSizeBeforeMB
[ 10.25012, 2.924672, 1.200872, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
16.07011299792432
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
9.893944
PromotedMB
6.572424
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
5
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
6468.9227
DurationMSec
9.8729000000003
PauseDurationMSec
1.3258999999998196
SuspendDurationMSec
0.265400000000227
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
5.434699999999793
PauseStartRelativeMSec
6468.7384
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.1970000000001164
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9893944
TotalPromoted6572424
Depth2
GenerationSize03594496
TotalPromotedSize01207928
GenerationSize12608944
TotalPromotedSize12028328
GenerationSize23229064
TotalPromotedSize23227920
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize4353160
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount6
GCHandleCount1224
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.5397734209936909
AllocRateMBSec
0
HeapSizePeakMB
15.234432000000002
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.44148
GenSizeBeforeMB
[ 2.43216, 1.671976, 3.229064, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
14.459468966072247
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
8.09696
PromotedMB
1.207928
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6469.641
DurationMSec
3.7211000000006607
PauseDurationMSec
4.429200000000492
SuspendDurationMSec
0
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
30.64589999999953
PauseStartRelativeMSec
6469.641
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8096960
TotalPromoted1207928
Depth0
GenerationSize01801632
TotalPromotedSize01207928
GenerationSize12608944
TotalPromotedSize10
GenerationSize23229064
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4349040
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount6
GCHandleCount1223
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount155
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure0
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.25128
RatioPeakAfter
1.8815002173655302
AllocRateMBSec
301.8765968694064
HeapSizePeakMB
15.234432000000002
UserAllocated
[ 9.142999999999999, 0, 0, 0.10828, 0 ]
HeapSizeBeforeMB
15.234432000000002
GenSizeBeforeMB
[ 10.225112, 1.6719760000000001, 3.229064, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
12.627761574451647
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
8.20996
PromotedMB
1.125248
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6502.4372
DurationMSec
2.9793999999992593
PauseDurationMSec
3.6063999999996668
SuspendDurationMSec
0.1565999999993437
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
23.03310000000056
PauseStartRelativeMSec
6501.8311
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8209960
TotalPromoted1125248
Depth0
GenerationSize01768768
TotalPromotedSize01125248
GenerationSize12738328
TotalPromotedSize10
GenerationSize23229064
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4365520
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount7
GCHandleCount1239
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount105
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.884567999999999
RatioPeakAfter
1.824155050694522
AllocRateMBSec
342.3146688895463
HeapSizePeakMB
14.97624
UserAllocated
[ 7.884599999999999, 0, 0, -3.2E-05, 0 ]
HeapSizeBeforeMB
14.97624
GenSizeBeforeMB
[ 9.029952, 2.608944, 3.229064, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
13.537791625216826
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
11.406968
PromotedMB
1.3704
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6535.5206
DurationMSec
2.74369999999999
PauseDurationMSec
3.0870999999997366
SuspendDurationMSec
0.19209999999930005
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
29.801400000000285
PauseStartRelativeMSec
6535.2191
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11406968
TotalPromoted1370400
Depth1
GenerationSize05660232
TotalPromotedSize0618432
GenerationSize11237136
TotalPromotedSize1751968
GenerationSize23969880
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4431440
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount7
SinkBlockCount7
GCHandleCount1243
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps8
CondemnedGeneration1
Gen0ReductionCount92
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.654824
RatioPeakAfter
2.2469473044896766
AllocRateMBSec
592.4159267685354
HeapSizePeakMB
25.630856
UserAllocated
[ 17.654792, 0, 0, 3.2E-05, 0 ]
HeapSizeBeforeMB
25.630856
GenSizeBeforeMB
[ 19.555184, 2.738328, 3.229064, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
9.386563692475287
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
5.85108
PromotedMB
0.637984
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6557.1808
DurationMSec
1.8942999999999302
PauseDurationMSec
2.144800000000032
SuspendDurationMSec
0.13839999999981956
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
18.687600000000202
PauseStartRelativeMSec
6556.9534
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5851080
TotalPromoted637984
Depth1
GenerationSize0584
TotalPromotedSize0586336
GenerationSize11272904
TotalPromotedSize151648
GenerationSize24021392
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4447920
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount7
GCHandleCount1243
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps8
CondemnedGeneration1
Gen0ReductionCount84
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
18.159816
RatioPeakAfter
4.452572858344101
AllocRateMBSec
971.7575290566901
HeapSizePeakMB
26.05236
UserAllocated
[ 18.159816, 0, 0, 0, 0 ]
HeapSizeBeforeMB
26.05236
GenSizeBeforeMB
[ 20.737064, 1.237136, 3.96988, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
10.29550123845552
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
8.473464
PromotedMB
0.591808
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6578.0983
DurationMSec
1.8757000000005064
PauseDurationMSec
2.162899999999354
SuspendDurationMSec
0.15929999999934807
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
18.758499999999913
PauseStartRelativeMSec
6577.8351
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8473464
TotalPromoted591808
Depth1
GenerationSize02590520
TotalPromotedSize0578496
GenerationSize11255072
TotalPromotedSize113312
GenerationSize24026352
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4493240
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount7
GCHandleCount1242
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps8
CondemnedGeneration1
Gen0ReductionCount90
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
18.279568
RatioPeakAfter
3.070994341865381
AllocRateMBSec
974.4685342644715
HeapSizePeakMB
26.02196
UserAllocated
[ 18.279568, 0, 0, 0, 0 ]
HeapSizeBeforeMB
26.02196
GenSizeBeforeMB
[ 20.619384, 1.2729039999999998, 4.021392, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
10.338218283668539
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
8.004576
PromotedMB
0.569328
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6606.9642
DurationMSec
1.9359999999996944
PauseDurationMSec
2.3344000000006417
SuspendDurationMSec
0.1912000000002081
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
26.6266999999998
PauseStartRelativeMSec
6606.6023
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8004576
TotalPromoted569328
Depth1
GenerationSize02181744
TotalPromotedSize0556200
GenerationSize11173728
TotalPromotedSize113128
GenerationSize24039344
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4501480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount10
GCHandleCount1242
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration1
Gen0ReductionCount88
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
25.537856
RatioPeakAfter
4.194911510615928
AllocRateMBSec
959.1070617087431
HeapSizePeakMB
33.578488
UserAllocated
[ 25.537856, 0, 0, 0, 0 ]
HeapSizeBeforeMB
33.578488
GenSizeBeforeMB
[ 28.188784, 1.2550720000000004, 4.026351999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
8.060467316505955
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
11.008288
PromotedMB
0.588768
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6638.6023
DurationMSec
1.548200000000179
PauseDurationMSec
1.8320999999996275
SuspendDurationMSec
0.12820000000010623
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
29.441499999999905
PauseStartRelativeMSec
6638.3432
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11008288
TotalPromoted588768
Depth1
GenerationSize05130200
TotalPromotedSize0587592
GenerationSize11223824
TotalPromotedSize11176
GenerationSize24040384
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4505600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount10
GCHandleCount1243
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration1
Gen0ReductionCount66
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
28.628904
RatioPeakAfter
3.2980692365606714
AllocRateMBSec
972.3996399639994
HeapSizePeakMB
36.306096000000004
UserAllocated
[ 28.628904, 0, 0, 0, 0 ]
HeapSizeBeforeMB
36.306096000000004
GenSizeBeforeMB
[ 30.984744000000003, 1.173728, 4.039343999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.8582958149994075
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
13.676928
PromotedMB
0.590616
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6669.8366
DurationMSec
1.5870000000004438
PauseDurationMSec
1.8747000000003027
SuspendDurationMSec
0.12750000000050932
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
29.421299999999974
PauseStartRelativeMSec
6669.5732
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13676928
TotalPromoted590616
Depth1
GenerationSize07732336
TotalPromotedSize0588520
GenerationSize11284248
TotalPromotedSize12096
GenerationSize24042344
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4509720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount11
GCHandleCount1242
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration1
Gen0ReductionCount48
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
28.670080000000002
RatioPeakAfter
2.6577828003481483
AllocRateMBSec
974.4667978641334
HeapSizePeakMB
36.350304
UserAllocated
[ 28.670080000000002, 0, 0, 0, 0 ]
HeapSizeBeforeMB
36.350304
GenSizeBeforeMB
[ 30.977815999999997, 1.223824, 4.0403839999999995, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.990222392638951
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
5.920864
PromotedMB
0.559352
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6701.0004
DurationMSec
1.5587000000004991
PauseDurationMSec
1.897399999999834
SuspendDurationMSec
0.16679999999996653
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
29.25969999999961
PauseStartRelativeMSec
6700.6847
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5920864
TotalPromoted559352
Depth1
GenerationSize0584
TotalPromotedSize0559176
GenerationSize11247536
TotalPromotedSize1176
GenerationSize24042384
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4522080
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount11
GCHandleCount1242
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration1
Gen0ReductionCount50
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
28.808112
RatioPeakAfter
6.161292676204013
AllocRateMBSec
984.566212230487
HeapSizePeakMB
36.480176
UserAllocated
[ 28.808112, 0, 0, 0, 0 ]
HeapSizeBeforeMB
36.480176
GenSizeBeforeMB
[ 31.045304, 1.2842480000000003, 4.042343999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
6.089783709009721
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
11.137552
PromotedMB
0.584496
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6731.7328
DurationMSec
1.6198000000003958
PauseDurationMSec
1.9596000000001368
SuspendDurationMSec
0.14440000000013242
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
28.85660000000007
PauseStartRelativeMSec
6731.4172
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11137552
TotalPromoted584496
Depth1
GenerationSize05176784
TotalPromotedSize0584240
GenerationSize11271464
TotalPromotedSize1256
GenerationSize24042464
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4538560
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount13
GCHandleCount1242
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration1
Gen0ReductionCount49
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated40
FreeListConsumed40
AllocedSinceLastGCMB
28.392303999999996
RatioPeakAfter
3.24520361386416
AllocRateMBSec
983.9102319746584
HeapSizePeakMB
36.143624
UserAllocated
[ 28.392303999999996, 0, 0, 0, 0 ]
HeapSizeBeforeMB
36.143624
GenSizeBeforeMB
[ 30.745424, 1.247536, 4.042383999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
6.358992997190191
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
5.985368
PromotedMB
0.56688
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6762.4619
DurationMSec
1.5198999999993248
PauseDurationMSec
1.8317000000006374
SuspendDurationMSec
0.13170000000081927
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
28.82009999999991
PauseStartRelativeMSec
6762.1738
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5985368
TotalPromoted566880
Depth1
GenerationSize0584
TotalPromotedSize0566584
GenerationSize11291320
TotalPromotedSize1296
GenerationSize24042504
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4542680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount12
GCHandleCount1242
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration1
Gen0ReductionCount52
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated120
FreeListConsumed120
AllocedSinceLastGCMB
28.121879999999997
RatioPeakAfter
5.978301751872232
AllocRateMBSec
975.7731583165945
HeapSizePeakMB
35.782336
UserAllocated
[ 28.121879999999997, 0, 0, 0, 0 ]
HeapSizeBeforeMB
35.782336
GenSizeBeforeMB
[ 30.360128, 1.2714640000000001, 4.042464, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.975831761921338
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
11.054888
PromotedMB
0.571072
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6793.3817
DurationMSec
1.4936999999999898
PauseDurationMSec
1.8447999999998501
SuspendDurationMSec
0.18170000000009168
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
29.070400000000518
PauseStartRelativeMSec
6793.0536
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11054888
TotalPromoted571072
Depth1
GenerationSize05125216
TotalPromotedSize0569936
GenerationSize11231088
TotalPromotedSize11136
GenerationSize24043504
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4546800
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount12
GCHandleCount1243
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration1
Gen0ReductionCount48
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
28.319895999999996
RatioPeakAfter
3.269962753127847
AllocRateMBSec
974.1832241730245
HeapSizePeakMB
36.149072
UserAllocated
[ 28.319895999999996, 0, 0, 0, 0 ]
HeapSizeBeforeMB
36.149072
GenSizeBeforeMB
[ 30.706968, 1.29132, 4.042504, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.967291170685709
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
15.622192
PromotedMB
0.577136
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6822.6883
DurationMSec
1.564900000000307
PauseDurationMSec
1.8635000000003856
SuspendDurationMSec
0.1338000000005195
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
27.53609999999935
PauseStartRelativeMSec
6822.4131
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize15622192
TotalPromoted577136
Depth1
GenerationSize09680040
TotalPromotedSize0576960
GenerationSize11243528
TotalPromotedSize1176
GenerationSize24043544
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4546800
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount7
SinkBlockCount12
GCHandleCount1243
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration1
Gen0ReductionCount47
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
26.893624000000003
RatioPeakAfter
2.2255202086877435
AllocRateMBSec
976.6678650934823
HeapSizePeakMB
34.767503999999995
UserAllocated
[ 26.893624000000003, 0, 0, 0, 0 ]
HeapSizeBeforeMB
34.767503999999995
GenSizeBeforeMB
[ 29.384631999999996, 1.2310880000000002, 4.043504, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
6.3385216125403145
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
11.141216
PromotedMB
0.577696
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6853.5049
DurationMSec
1.4315999999998894
PauseDurationMSec
1.748700000000099
SuspendDurationMSec
0.140400000000227
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
28.95839999999953
PauseStartRelativeMSec
6853.213
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11141216
TotalPromoted577696
Depth1
GenerationSize05148936
TotalPromotedSize0577560
GenerationSize11289536
TotalPromotedSize1136
GenerationSize24043544
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4550920
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount12
GCHandleCount1244
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration1
Gen0ReductionCount52
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
28.626104
RatioPeakAfter
3.26916415586952
AllocRateMBSec
988.5250566329794
HeapSizePeakMB
36.42246399999999
UserAllocated
[ 28.626104, 0, 0, 0, 0 ]
HeapSizeBeforeMB
36.42246399999999
GenSizeBeforeMB
[ 31.027111999999995, 1.243528, 4.043544, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.694774172748714
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
5.928608
PromotedMB
0.567064
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6884.1349
DurationMSec
1.6652000000003682
PauseDurationMSec
1.9534000000003289
SuspendDurationMSec
0.11670000000049185
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
28.930900000000292
PauseStartRelativeMSec
6883.8691
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5928608
TotalPromoted567064
Depth1
GenerationSize0584
TotalPromotedSize0566888
GenerationSize11225240
TotalPromotedSize1176
GenerationSize24043584
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4550920
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount13
GCHandleCount1243
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration1
Gen0ReductionCount46
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure15
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
28.493167999999997
RatioPeakAfter
6.127865428107239
AllocRateMBSec
984.8697413492048
HeapSizePeakMB
36.329712
UserAllocated
[ 28.493167999999997, 0, 0, 0, 0 ]
HeapSizeBeforeMB
36.329712
GenSizeBeforeMB
[ 30.888352, 1.289536, 4.043544, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
6.324896468433118
(1092 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.5592529676259728
MeanSizeAfterMB
11.431372985611496
MeanSizePeakMB
71.05402893525176
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1112
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
7.889100000000326
TotalPauseTimeMSec
1733.8893000000817
MaxSuspendDurationMSec
0.265400000000227
MaxSizePeakMB
81.61447199999998
MaxAllocRateMBSec
3115.5348028681224
TotalAllocatedMB
69265.57620799995
TotalCpuMSec
0
TotalPromotedMB
850.5396959999997
TotalSizeAfterMB
12711.686759999984
TotalSizePeakMB
79012.08017599996
FinalizedObjects(empty)
ProcessDuration
30323.4511
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.5404869090910274
MeanSizeAfterMB
11.982527932121203
MeanSizePeakMB
73.65361247030293
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
825
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
7.626100000000406
TotalPauseTimeMSec
1270.9017000000977
MaxSuspendDurationMSec
0.23730000000068685
MaxSizePeakMB
79.521608
MaxAllocRateMBSec
3115.5348028681224
TotalAllocatedMB
53737.01268
TotalCpuMSec
0
TotalPromotedMB
695.8737760000002
TotalSizeAfterMB
9885.585543999992
TotalSizePeakMB
60764.23028799992
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.614201748251693
MeanSizeAfterMB
9.846878573426569
MeanSizePeakMB
63.75040369230768
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
286
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
7.889100000000326
TotalPauseTimeMSec
461.6616999999842
MaxSuspendDurationMSec
0.2073999999993248
MaxSizePeakMB
81.61447199999998
MaxAllocRateMBSec
3072.265173887952
TotalAllocatedMB
15528.563528000004
TotalCpuMSec
0
TotalPromotedMB
148.09349600000004
TotalSizeAfterMB
2816.2072719999987
TotalSizePeakMB
18232.615455999996
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.3258999999998196
MeanSizeAfterMB
9.893944
MeanSizePeakMB
15.234432000000002
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
1.3258999999998196
TotalPauseTimeMSec
1.3258999999998196
MaxSuspendDurationMSec
0.265400000000227
MaxSizePeakMB
15.234432000000002
MaxAllocRateMBSec
0
TotalAllocatedMB
0
TotalCpuMSec
0
TotalPromotedMB
6.572424
TotalSizeAfterMB
9.893944
TotalSizePeakMB
15.234432000000002
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking(empty)
BGCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
9.893944
PromotedMB
6.572424
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
5
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
6468.9227
DurationMSec
9.8729000000003
PauseDurationMSec
1.3258999999998196
SuspendDurationMSec
0.265400000000227
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
5.434699999999793
PauseStartRelativeMSec
6468.7384
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.1970000000001164
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9893944
TotalPromoted6572424
Depth2
GenerationSize03594496
TotalPromotedSize01207928
GenerationSize12608944
TotalPromotedSize12028328
GenerationSize23229064
TotalPromotedSize23227920
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize4353160
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount6
GCHandleCount1224
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.5397734209936909
AllocRateMBSec
0
HeapSizePeakMB
15.234432000000002
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.44148
GenSizeBeforeMB
[ 2.43216, 1.671976, 3.229064, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
14.459468966072247
GCThreadIDsToHeapNumbers(empty)
DurationMSec
39907.8599
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="242565"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesDapper_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 12:15:36 PM"\\r\\n SessionEndTime="8/21/2023 12:16:21 PM"\\r\\n SessionDuration="00:0...
Events
[ <Event MSec= "0.0000" PID="10544" PName="PerfView" TID="8804" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 12:16:18 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="631" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 12:15:36 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="10544" PName="PerfView" TID="8804" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "11.4394" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="10544" PName="PerfView" TID="8804" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "11.4095" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "11.4394" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "11.4605" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "11.4605" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", - "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337159632108.9
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="10544" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="156.1455" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmp31ED.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="44872.132" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", - "
Count104
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="8804" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337159632108.9" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337159632108.9" /> ... (more) ]
Count1356
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", - "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="100" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1175" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="151" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="28" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", - " ... (more) ]
Count78
(values)
indexvalue
0\r\n", - "
1\r\n", - "
2\r\n", - "
3\r\n", - "
4\r\n", - "
5\r\n", - "
6\r\n", - "
7\r\n", - "
8\r\n", - "
9\r\n", - "
10\r\n", - "
11\r\n", - "
12\r\n", - "
13\r\n", - "
14\r\n", - "
15\r\n", - "
16\r\n", - "
17\r\n", - "
18\r\n", - "
19\r\n", - "
... (more)
MaxEventIndex242565
EventCount
242565
Size
44834938
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesDapper_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", - "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", - "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", - "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", - "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", - " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", - " at lambda_method760(Closure, TraceLog)\r\n", - " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 12:15:36Z
SessionEndTime2023-08-21 12:16:21Z
SessionEndTimeRelativeMSec
44872.132
SessionDuration00:00:44.8721320
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [98, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [100, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [101, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesDapper_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
Benchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\sbk0f5zj.xqa\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios DbFortunesDapper --urls http://10.0.0.104:5000 --server Kestrel --kestrelTransport Sockets --protocol 
NumberOfHeapCountSwitches
7
Benchmark
FortunesDapper
Id
datas_3 | FortunesDapper
TotalSuspensionTimeMSec
104.42770000007658
PercentPauseTimeInGC
5.717981420657234
PercentTimeInGC
5.373602083174514
MeanHeapSizeBeforeMB
71.05402893525176
MaxHeapSizeMB
81.61447199999998
TotalAllocationsMB
69265.57620799995
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesDapper_Windows.gc.etl.zip
ProcessName
Benchmarks
datas_3 | FortunesEf
Submission#4+LoadInfo
WorkingSetMB
188
PrivateMemoryMB
149
Latency50thMS
0.75
Latency75thMS
1.02
Latency90thMS
1.44
Latency99thMS
9.98
MeanLatencyMS
1.1
ProcessId
7872
RequestsPerMSec
300.823
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
Benchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\1apcayl1.p0r\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios DbFortunesEf --urls http://10.0.0.104:5000 --server Kestrel --kestrelTransport Sockets --protocol 
ProcessID
7872
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
3.103808
PromotedMB
1.289464
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6063.4725
DurationMSec
5.293499999999767
PauseDurationMSec
5.522300000000541
SuspendDurationMSec
0.0059000000001105946
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
6063.2953
PauseStartRelativeMSec
6063.2953
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3103808
TotalPromoted1289464
Depth0
GenerationSize01553984
TotalPromotedSize01289464
GenerationSize11306744
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4134800
TotalPromotedSize40
FinalizationPromotedSize29770
FinalizationPromotedCount19
PinnedObjectCount2
SinkBlockCount3
GCHandleCount661
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
0.87951574324185
AllocRateMBSec
0
HeapSizePeakMB
2.729848
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.729848
GenSizeBeforeMB
[ 2.621568, 0, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
0.0909946609698822
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
4.293536
PromotedMB
2.319656
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6796.7263
DurationMSec
11.098899999999958
PauseDurationMSec
11.298900000000685
SuspendDurationMSec
0.12290000000029977
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
727.8085000000001
PauseStartRelativeMSec
6796.5754
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4293536
TotalPromoted2319656
Depth1
GenerationSize01553984
TotalPromotedSize01160064
GenerationSize11176696
TotalPromotedSize11159592
GenerationSize21159592
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4196600
TotalPromotedSize40
FinalizationPromotedSize72614
FinalizationPromotedCount72
PinnedObjectCount2
SinkBlockCount4
GCHandleCount1115
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.5748239999999996
RatioPeakAfter
0.9631054683132971
AllocRateMBSec
3.5377767640801108
HeapSizePeakMB
4.135128
UserAllocated
[ 2.476472, 0, 0, 0.098352, 0 ]
HeapSizeBeforeMB
4.135128
GenSizeBeforeMB
[ 2.62172, 1.306744, 0, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
1.5287223480647973
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.244992
PromotedMB
1.481632
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6822.3732
DurationMSec
8.95470000000023
PauseDurationMSec
9.030499999999847
SuspendDurationMSec
0.045900000000074215
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
14.484599999999773
PauseStartRelativeMSec
6822.3107
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4244992
TotalPromoted1481632
Depth0
GenerationSize0584
TotalPromotedSize01481632
GenerationSize12681552
TotalPromotedSize10
GenerationSize21159592
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4196600
TotalPromotedSize40
FinalizationPromotedSize441542
FinalizationPromotedCount370
PinnedObjectCount1
SinkBlockCount4
GCHandleCount1561
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount14
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.35088
RatioPeakAfter
1.2183467012423108
AllocRateMBSec
162.30203112271218
HeapSizePeakMB
5.171872
UserAllocated
[ 2.35088, 0, 0, 0, 0 ]
HeapSizeBeforeMB
5.171872
GenSizeBeforeMB
[ 2.62892, 1.176696, 1.159592, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
38.402983614783665
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.258208
PromotedMB
1.248792
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6881.2116
DurationMSec
7.772100000000137
PauseDurationMSec
7.992699999999786
SuspendDurationMSec
0.17780000000038854
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
49.6890999999996
PauseStartRelativeMSec
6881.0179
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6258208
TotalPromoted1248792
Depth0
GenerationSize0724288
TotalPromotedSize01248792
GenerationSize13938104
TotalPromotedSize10
GenerationSize21159592
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4229560
TotalPromotedSize40
FinalizationPromotedSize48164
FinalizationPromotedCount330
PinnedObjectCount2
SinkBlockCount4
GCHandleCount1717
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount9384
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.330968
RatioPeakAfter
1.0669597431085704
AllocRateMBSec
46.91105292710109
HeapSizePeakMB
6.677256
UserAllocated
[ 2.330968, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.677256
GenSizeBeforeMB
[ 2.629448, 2.681552, 1.159592, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
13.85653707061824
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.81724
PromotedMB
1.262728
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
5
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6891.1542
DurationMSec
6.188100000000304
PauseDurationMSec
6.3190999999997075
SuspendDurationMSec
0.10180000000036671
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
2.0536000000001877
PauseStartRelativeMSec
6891.0382
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6817240
TotalPromoted1262728
Depth0
GenerationSize00
TotalPromotedSize01262728
GenerationSize15217304
TotalPromotedSize10
GenerationSize21159592
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4233680
TotalPromotedSize40
FinalizationPromotedSize312
FinalizationPromotedCount13
PinnedObjectCount2
SinkBlockCount4
GCHandleCount1760
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount134
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.363536
RatioPeakAfter
1.163836391266847
AllocRateMBSec
1150.9232567198014
HeapSizePeakMB
7.934152
UserAllocated
[ 2.363536, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.934152
GenSizeBeforeMB
[ 2.629792, 3.938104, 1.159592, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
75.4726671205201
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
8.3072
PromotedMB
1.277608
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6900.5976
DurationMSec
5.792499999999563
PauseDurationMSec
5.918999999999869
SuspendDurationMSec
0.09540000000015425
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
3.1396999999997206
PauseStartRelativeMSec
6900.4829
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8307200
TotalPromoted1277608
Depth0
GenerationSize0200888
TotalPromotedSize01277608
GenerationSize16502256
TotalPromotedSize10
GenerationSize21159592
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4237800
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount1850
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount21740
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.395632
RatioPeakAfter
1.1085063559322035
AllocRateMBSec
763.0130267223662
HeapSizePeakMB
9.208584
UserAllocated
[ 2.395632, 0, 0, 0, 0 ]
HeapSizeBeforeMB
9.208584
GenSizeBeforeMB
[ 2.625024, 5.217304, 1.159592, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
65.34050139644913
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
15.833608
PromotedMB
8.945912
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7020.0924
DurationMSec
12.97569999999996
PauseDurationMSec
13.504799999999705
SuspendDurationMSec
0.19049999999970169
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
113.34660000000076
PauseStartRelativeMSec
7019.7376
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize15833608
TotalPromoted8945912
Depth1
GenerationSize03416176
TotalPromotedSize03665952
GenerationSize15438896
TotalPromotedSize15279960
GenerationSize26439312
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4332560
TotalPromotedSize40
FinalizationPromotedSize31509
FinalizationPromotedCount392
PinnedObjectCount4
SinkBlockCount4
GCHandleCount2112
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount11638
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
34.133904
RatioPeakAfter
2.6979609448459256
AllocRateMBSec
301.14625405614083
HeapSizePeakMB
42.718456
UserAllocated
[ 34.13384, 0, 0, 6.399999999998074E-05, 0 ]
HeapSizeBeforeMB
42.718456
GenSizeBeforeMB
[ 34.849943999999994, 6.502255999999999, 1.159592, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
10.64615763010866
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
27.067728
PromotedMB
12.928352
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
8
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7078.7171
DurationMSec
15.581100000000333
PauseDurationMSec
2.1929999999993015
SuspendDurationMSec
0.2653999999993175
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
11.557600000000093
PauseStartRelativeMSec
7078.3986
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
2.074200000000019
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize27067728
TotalPromoted12928352
Depth2
GenerationSize014234176
TotalPromotedSize01037032
GenerationSize15438896
TotalPromotedSize15279960
GenerationSize26439312
TotalPromotedSize26404760
GenerationSize3206664
TotalPromotedSize3206600
GenerationSize4748680
TotalPromotedSize40
FinalizationPromotedSize216
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount7
GCHandleCount1758
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.7549648792096628
AllocRateMBSec
0
HeapSizePeakMB
47.50291200000001
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.501048
GenSizeBeforeMB
[ 3.416176, 5.438896, 6.439312, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
8.431637380959641
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
23.617624
PromotedMB
1.037032
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7080.5168
DurationMSec
2.225399999999354
PauseDurationMSec
2.969699999999648
SuspendDurationMSec
0
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
47.44710000000032
PauseStartRelativeMSec
7080.5168
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize23617624
TotalPromoted1037032
Depth0
GenerationSize010854112
TotalPromotedSize01037032
GenerationSize15438896
TotalPromotedSize10
GenerationSize26439312
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4678640
TotalPromotedSize40
FinalizationPromotedSize216
FinalizationPromotedCount9
PinnedObjectCount5
SinkBlockCount4
GCHandleCount1760
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration0
Gen0ReductionCount101
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure0
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
33.814744000000005
RatioPeakAfter
2.0113332314884853
AllocRateMBSec
712.6830512296806
HeapSizePeakMB
47.50291200000001
UserAllocated
[ 33.60808, 0, 0, 0.206664, 0 ]
HeapSizeBeforeMB
47.50291200000001
GenSizeBeforeMB
[ 35.418040000000005, 5.438896000000001, 6.439312, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
5.890298471937231
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
13.739464
PromotedMB
3.70472
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7122.3261
DurationMSec
3.1067999999995664
PauseDurationMSec
3.7421000000003914
SuspendDurationMSec
0.2055000000000291
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
27.417099999999664
PauseStartRelativeMSec
7121.718
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13739464
TotalPromoted3704720
Depth1
GenerationSize00
TotalPromotedSize0572488
GenerationSize13241648
TotalPromotedSize13132232
GenerationSize29530112
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4761040
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount7
GCHandleCount1749
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount43
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated16352
FreeListConsumed16352
AllocedSinceLastGCMB
30.025384
RatioPeakAfter
3.3498121906356757
AllocRateMBSec
1095.133475094024
HeapSizePeakMB
46.024624
UserAllocated
[ 30.025447999999997, 0, 0, -6.4E-05, 0 ]
HeapSizeBeforeMB
46.024624
GenSizeBeforeMB
[ 33.939752, 5.438896000000001, 6.439312, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
12.009615137745465
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
13.056944
PromotedMB
0.544176
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7160.0168
DurationMSec
1.4113999999999578
PauseDurationMSec
1.7385000000003856
SuspendDurationMSec
0.12560000000030414
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.27669999999944
PauseStartRelativeMSec
7159.7107
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13056944
TotalPromoted544176
Depth1
GenerationSize00
TotalPromotedSize0461456
GenerationSize12460144
TotalPromotedSize182720
GenerationSize29604376
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4785760
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount8
GCHandleCount1749
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount72
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
33.555248
RatioPeakAfter
3.698296936863634
AllocRateMBSec
978.9521161605567
HeapSizePeakMB
48.288456000000004
UserAllocated
[ 33.555248, 0, 0, 0, 0 ]
HeapSizeBeforeMB
48.288456000000004
GenSizeBeforeMB
[ 35.310032, 3.241648, 9.530112000000003, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
4.827128545726233
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
25.458728
PromotedMB
0.48176
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7195.2044
DurationMSec
1.3980000000001382
PauseDurationMSec
1.7308000000002721
SuspendDurationMSec
0.13770000000022264
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
33.46739999999954
PauseStartRelativeMSec
7194.897
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize25458728
TotalPromoted481760
Depth1
GenerationSize012430472
TotalPromotedSize0473064
GenerationSize12419000
TotalPromotedSize18696
GenerationSize29612712
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4789880
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount7
SinkBlockCount8
GCHandleCount1749
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount39
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated120
FreeListConsumed120
AllocedSinceLastGCMB
33.350384
RatioPeakAfter
1.8630049388170529
AllocRateMBSec
996.5035825908333
HeapSizePeakMB
47.42973599999999
UserAllocated
[ 33.350384, 0, 0, 0, 0 ]
HeapSizeBeforeMB
47.42973599999999
GenSizeBeforeMB
[ 35.15855199999999, 2.460144, 9.604375999999997, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
4.91729690722901
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
17.795152
PromotedMB
0.507336
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7229.8382
DurationMSec
1.3265000000001237
PauseDurationMSec
1.6789000000007945
SuspendDurationMSec
0.14830000000074506
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
32.90679999999975
PauseStartRelativeMSec
7229.5106
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize17795152
TotalPromoted507336
Depth1
GenerationSize04716016
TotalPromotedSize0505136
GenerationSize12463840
TotalPromotedSize12200
GenerationSize29614632
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4794000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount9
GCHandleCount1749
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount39
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated40
FreeListConsumed40
AllocedSinceLastGCMB
32.298336
RatioPeakAfter
2.6134187558499073
AllocRateMBSec
981.5094752452455
HeapSizePeakMB
46.506184
UserAllocated
[ 32.298336, 0, 0, 0, 0 ]
HeapSizeBeforeMB
46.506184
GenSizeBeforeMB
[ 34.267808, 2.419, 9.612711999999997, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
4.854318403272937
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
23.281784
PromotedMB
0.529992
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7265.858
DurationMSec
1.3380999999999403
PauseDurationMSec
1.6957000000002154
SuspendDurationMSec
0.1631999999999607
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.36119999999937
PauseStartRelativeMSec
7265.5273
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize23281784
TotalPromoted529992
Depth1
GenerationSize010184976
TotalPromotedSize0527792
GenerationSize12471312
TotalPromotedSize12200
GenerationSize29616592
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4802240
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount6
SinkBlockCount9
GCHandleCount1751
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount37
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
33.969912
RatioPeakAfter
2.0629206078022206
AllocRateMBSec
988.612504801946
HeapSizePeakMB
48.02847200000001
UserAllocated
[ 33.969912, 0, 0, 0, 0 ]
HeapSizeBeforeMB
48.02847200000001
GenSizeBeforeMB
[ 35.743336000000006, 2.4638400000000003, 9.614631999999999, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
4.702844670507544
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
18.194256
PromotedMB
0.47592
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7301.4067
DurationMSec
1.2479000000002998
PauseDurationMSec
1.6310999999996056
SuspendDurationMSec
0.18029999999998836
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
33.85150000000067
PauseStartRelativeMSec
7301.0487
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize18194256
TotalPromoted475920
Depth1
GenerationSize05089752
TotalPromotedSize0475600
GenerationSize12466568
TotalPromotedSize1320
GenerationSize29616672
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4814600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount9
GCHandleCount1749
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount36
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
33.538536
RatioPeakAfter
2.632533256649791
AllocRateMBSec
990.754796685504
HeapSizePeakMB
47.896984
UserAllocated
[ 33.538536, 0, 0, 0, 0 ]
HeapSizeBeforeMB
47.896984
GenSizeBeforeMB
[ 35.602416000000005, 2.4713119999999993, 9.616591999999999, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
4.596901016271618
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
13.072432
PromotedMB
0.479984
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7337.0219
DurationMSec
1.2377000000005864
PauseDurationMSec
1.5986999999995533
SuspendDurationMSec
0.1694999999999709
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.033400000000256
PauseStartRelativeMSec
7336.6894
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13072432
TotalPromoted479984
Depth1
GenerationSize00
TotalPromotedSize0479624
GenerationSize12426136
TotalPromotedSize1360
GenerationSize29616792
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4822840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount11
GCHandleCount1750
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount34
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
33.75121600000001
RatioPeakAfter
3.6759311503781404
AllocRateMBSec
991.7086156540267
HeapSizePeakMB
48.05336000000001
UserAllocated
[ 33.75121600000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
48.05336000000001
GenSizeBeforeMB
[ 35.763456000000005, 2.466568, 9.616672, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
4.486684758966106
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
20.816912
PromotedMB
0.517192
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7373.4183
DurationMSec
1.3770999999997002
PauseDurationMSec
1.7186000000001513
SuspendDurationMSec
0.15239999999994325
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.84059999999954
PauseStartRelativeMSec
7373.1016
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize20816912
TotalPromoted517192
Depth1
GenerationSize07708552
TotalPromotedSize0513608
GenerationSize12458720
TotalPromotedSize13584
GenerationSize29620136
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4822840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount11
GCHandleCount1749
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount34
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
34.210488000000005
RatioPeakAfter
2.312479776059005
AllocRateMBSec
981.914433161325
HeapSizePeakMB
48.138688
UserAllocated
[ 34.210488000000005, 0, 0, 0, 0 ]
HeapSizeBeforeMB
48.138688
GenSizeBeforeMB
[ 35.889096, 2.426136, 9.616792, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
4.700868727981372
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
13.122016
PromotedMB
0.488288
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7408.0912
DurationMSec
1.293999999999869
PauseDurationMSec
1.686399999999594
SuspendDurationMSec
0.19729999999981374
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
32.92330000000038
PauseStartRelativeMSec
7407.72
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13122016
TotalPromoted488288
Depth1
GenerationSize00
TotalPromotedSize0487088
GenerationSize12471416
TotalPromotedSize11200
GenerationSize29621096
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4822840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount11
GCHandleCount1748
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount37
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
32.734768
RatioPeakAfter
3.5847717301975552
AllocRateMBSec
994.2735995480291
HeapSizePeakMB
47.039432000000005
UserAllocated
[ 32.734768, 0, 0, 0, 0 ]
HeapSizeBeforeMB
47.039432000000005
GenSizeBeforeMB
[ 34.753912, 2.4587200000000005, 9.620136, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
4.872622415102111
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
20.67668
PromotedMB
0.53308
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7443.8699
DurationMSec
1.347700000000259
PauseDurationMSec
1.6825999999991836
SuspendDurationMSec
0.13189999999940483
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.17150000000038
PauseStartRelativeMSec
7443.5582
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize20676680
TotalPromoted533080
Depth1
GenerationSize07560544
TotalPromotedSize0530920
GenerationSize12463616
TotalPromotedSize12160
GenerationSize29623016
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4822840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount14
GCHandleCount1748
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount36
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
33.952736
RatioPeakAfter
2.325814782644022
AllocRateMBSec
993.5980568602382
HeapSizePeakMB
48.090128
UserAllocated
[ 33.952736, 0, 0, 0, 0 ]
HeapSizeBeforeMB
48.090128
GenSizeBeforeMB
[ 35.790952, 2.4714160000000005, 9.621096, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
4.692908202964805
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
17.991824
PromotedMB
0.508672
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7487.267
DurationMSec
1.3413000000000466
PauseDurationMSec
1.6989999999996144
SuspendDurationMSec
0.16049999999995634
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
41.71219999999994
PauseStartRelativeMSec
7486.9313
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize17991824
TotalPromoted508672
Depth1
GenerationSize04839488
TotalPromotedSize0507472
GenerationSize12498856
TotalPromotedSize11200
GenerationSize29623976
TotalPromotedSize20
GenerationSize3206664
TotalPromotedSize30
GenerationSize4822840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount13
GCHandleCount1749
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount37
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
34.151744
RatioPeakAfter
2.6738656403041734
AllocRateMBSec
818.7471291372799
HeapSizePeakMB
48.10772
UserAllocated
[ 34.151744, 0, 0, 0, 0 ]
HeapSizeBeforeMB
48.10772
GenSizeBeforeMB
[ 35.814423999999995, 2.463616, 9.623016, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
3.913736547249631
(1090 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.4293125225225694
MeanSizeAfterMB
17.762601210810814
MeanSizePeakMB
73.17264622702697
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1110
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
13.504799999999705
TotalPauseTimeMSec
1586.536900000052
MaxSuspendDurationMSec
0.2706000000007407
MaxSizePeakMB
86.56599200000001
MaxAllocRateMBSec
2854.2945745741795
TotalAllocatedMB
64774.975944000005
TotalCpuMSec
0
TotalPromotedMB
799.3905360000001
TotalSizeAfterMB
19716.487344000005
TotalSizePeakMB
81221.63731199995
FinalizedObjects(empty)
ProcessDuration
31011.303
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.381628808446445
MeanSizeAfterMB
18.275193918552038
MeanSizePeakMB
79.91927812971332
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
663
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
9.030499999999847
TotalPauseTimeMSec
916.019899999993
MaxSuspendDurationMSec
0.2657999999973981
MaxSizePeakMB
86.56599200000001
MaxAllocRateMBSec
2847.547553312097
TotalAllocatedMB
43295.58358400003
TotalCpuMSec
0
TotalPromotedMB
559.1760239999993
TotalSizeAfterMB
12116.453568
TotalSizePeakMB
52986.48139999993
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.498484304932869
MeanSizeAfterMB
16.97974450224215
MeanSizePeakMB
63.20101569506726
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
446
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
13.504799999999705
TotalPauseTimeMSec
668.3240000000596
MaxSuspendDurationMSec
0.2706000000007407
MaxSizePeakMB
86.529736
MaxAllocRateMBSec
2854.2945745741795
TotalAllocatedMB
21479.392360000005
TotalCpuMSec
0
TotalPromotedMB
227.28615999999997
TotalSizeAfterMB
7572.9660479999975
TotalSizePeakMB
28187.653
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
2.1929999999993015
MeanSizeAfterMB
27.067728
MeanSizePeakMB
47.50291200000001
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
2.1929999999993015
TotalPauseTimeMSec
2.1929999999993015
MaxSuspendDurationMSec
0.2653999999993175
MaxSizePeakMB
47.50291200000001
MaxAllocRateMBSec
0
TotalAllocatedMB
0
TotalCpuMSec
0
TotalPromotedMB
12.928352
TotalSizeAfterMB
27.067728
TotalSizePeakMB
47.50291200000001
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking(empty)
BGCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
27.067728
PromotedMB
12.928352
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
8
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7078.7171
DurationMSec
15.581100000000333
PauseDurationMSec
2.1929999999993015
SuspendDurationMSec
0.2653999999993175
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
11.557600000000093
PauseStartRelativeMSec
7078.3986
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
2.074200000000019
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize27067728
TotalPromoted12928352
Depth2
GenerationSize014234176
TotalPromotedSize01037032
GenerationSize15438896
TotalPromotedSize15279960
GenerationSize26439312
TotalPromotedSize26404760
GenerationSize3206664
TotalPromotedSize3206600
GenerationSize4748680
TotalPromotedSize40
FinalizationPromotedSize216
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount7
GCHandleCount1758
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.7549648792096628
AllocRateMBSec
0
HeapSizePeakMB
47.50291200000001
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.501048
GenSizeBeforeMB
[ 3.416176, 5.438896, 6.439312, 0.206664, 0 ]
PauseTimePercentageSinceLastGC
8.431637380959641
GCThreadIDsToHeapNumbers(empty)
DurationMSec
39678.7426
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="228272"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesEf_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 12:24:54 PM"\\r\\n SessionEndTime="8/21/2023 12:25:38 PM"\\r\\n SessionDuration="00:00:43...
Events
[ <Event MSec= "0.0000" PID="2916" PName="PerfView" TID="8240" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 12:25:35 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="594" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 12:24:54 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="2916" PName="PerfView" TID="8240" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "17.7906" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="2916" PName="PerfView" TID="8240" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "17.7599" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "17.7906" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "17.8109" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "17.8109" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", - "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337159073805.9
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="2916" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="174.8775" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmpB6D8.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="43676.6312" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", - "
Count104
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="8240" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337159073805.9" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337159073805.9" /> ... (more) ]
Count1380
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", - "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="100" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1190" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="158" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="28" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", - " ... (more) ]
Count78
(values)
indexvalue
0\r\n", - "
1\r\n", - "
2\r\n", - "
3\r\n", - "
4\r\n", - "
5\r\n", - "
6\r\n", - "
7\r\n", - "
8\r\n", - "
9\r\n", - "
10\r\n", - "
11\r\n", - "
12\r\n", - "
13\r\n", - "
14\r\n", - "
15\r\n", - "
16\r\n", - "
17\r\n", - "
18\r\n", - "
19\r\n", - "
... (more)
MaxEventIndex228272
EventCount
228272
Size
42223084
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesEf_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", - "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", - "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", - "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", - "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", - " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", - " at lambda_method760(Closure, TraceLog)\r\n", - " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 12:24:54Z
SessionEndTime2023-08-21 12:25:38Z
SessionEndTimeRelativeMSec
43676.6312
SessionDuration00:00:43.6766312
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [98, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [100, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [101, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesEf_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
Benchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\1apcayl1.p0r\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios DbFortunesEf --urls http://10.0.0.104:5000 --server Kestrel --kestrelTransport Sockets --protocol 
NumberOfHeapCountSwitches
5
Benchmark
FortunesEf
Id
datas_3 | FortunesEf
TotalSuspensionTimeMSec
114.75609999998778
PercentPauseTimeInGC
5.115995609729948
PercentTimeInGC
4.745949565550548
MeanHeapSizeBeforeMB
73.17264622702697
MaxHeapSizeMB
86.56599200000001
TotalAllocationsMB
64774.975944000005
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesEf_Windows.gc.etl.zip
ProcessName
Benchmarks
datas_3 | FortunesPlatformDapper
Submission#4+LoadInfo
WorkingSetMB
187
PrivateMemoryMB
161
Latency50thMS
1.2
Latency75thMS
1.5
Latency90thMS
2.19
Latency99thMS
9.77
MeanLatencyMS
1.51
ProcessId
7660
RequestsPerMSec
388.782
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
PlatformBenchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\t1uyvzyb.rhh\\src\\BenchmarksApps\\TechEmpower\\PlatformBenchmarks\\published\\PlatformBenchmarks.exe"  
ProcessID
7660
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.294
PromotedMB
1.031976
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
702.044
DurationMSec
4.061500000000024
PauseDurationMSec
4.2812999999999874
SuspendDurationMSec
0.005199999999945248
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
701.8681
PauseStartRelativeMSec
701.8681
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1294000
TotalPromoted1031976
Depth0
GenerationSize0584
TotalPromotedSize01031976
GenerationSize11042120
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize45384
FinalizationPromotedCount27
PinnedObjectCount1
SinkBlockCount1
GCHandleCount297
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
2.1191282843894896
AllocRateMBSec
0
HeapSizePeakMB
2.742152
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.742152
GenSizeBeforeMB
[ 2.621536, 0, 0, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
0.6062881310952027
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
1.826088
PromotedMB
1.56692
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
1008.7374
DurationMSec
3.6336000000000013
PauseDurationMSec
3.665200000000027
SuspendDurationMSec
0.0036999999999807187
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
302.60630000000003
PauseStartRelativeMSec
1008.7128
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1826088
TotalPromoted1566920
Depth1
GenerationSize0584
TotalPromotedSize0589152
GenerationSize1596440
TotalPromotedSize1977768
GenerationSize2977768
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize760
FinalizationPromotedCount27
PinnedObjectCount1
SinkBlockCount1
GCHandleCount312
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.559096
RatioPeakAfter
2.0723470062779015
AllocRateMBSec
8.456849708680883
HeapSizePeakMB
3.784288
UserAllocated
[ 2.559096, 0, 0, 0, 0 ]
HeapSizeBeforeMB
3.784288
GenSizeBeforeMB
[ 2.621552, 1.04212, 0, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
1.1967159856532608
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
2.44076
PromotedMB
0.606568
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
1290.4807
DurationMSec
1.88149999999996
PauseDurationMSec
1.9044000000001233
SuspendDurationMSec
0.004599999999982174
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
278.0900999999999
PauseStartRelativeMSec
1290.4623
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize2440760
TotalPromoted606568
Depth0
GenerationSize0584
TotalPromotedSize0606568
GenerationSize11211112
TotalPromotedSize10
GenerationSize2977768
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount1
GCHandleCount288
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount11
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.571032
RatioPeakAfter
1.7684622822399578
AllocRateMBSec
9.24532013185655
HeapSizePeakMB
4.316392
UserAllocated
[ 2.571032, 0, 0, 0, 0 ]
HeapSizeBeforeMB
4.316392
GenSizeBeforeMB
[ 2.621568, 0.59644, 0.977768, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
0.6801562173543134
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
2.824776
PromotedMB
0.375576
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
1561.5936
DurationMSec
1.578899999999976
PauseDurationMSec
1.5968000000000302
SuspendDurationMSec
0.0036000000000058208
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
269.21720000000005
PauseStartRelativeMSec
1561.5803
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize2824776
TotalPromoted375576
Depth0
GenerationSize0584
TotalPromotedSize0375576
GenerationSize11595128
TotalPromotedSize10
GenerationSize2977768
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount1
GCHandleCount288
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount6
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.586288
RatioPeakAfter
1.7456761173275332
AllocRateMBSec
9.606696748944717
HeapSizePeakMB
4.931144
UserAllocated
[ 2.586288, 0, 0, 0, 0 ]
HeapSizeBeforeMB
4.931144
GenSizeBeforeMB
[ 2.621648, 1.211112, 0.977768, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
0.589629782802968
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
3.665296
PromotedMB
0.691656
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
5
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
1813.4496
DurationMSec
2.1539999999999964
PauseDurationMSec
2.1768999999999323
SuspendDurationMSec
0.005599999999958527
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
250.26130000000012
PauseStartRelativeMSec
1813.4347
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3665296
TotalPromoted691656
Depth0
GenerationSize0584
TotalPromotedSize0691656
GenerationSize12295440
TotalPromotedSize10
GenerationSize2977768
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount1
GCHandleCount288
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount5
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.7248159999999997
RatioPeakAfter
1.4883883866405334
AllocRateMBSec
10.887883983660272
HeapSizePeakMB
5.4553840000000005
UserAllocated
[ 2.58464, 0, 0, 0.140176, 0 ]
HeapSizeBeforeMB
5.4553840000000005
GenSizeBeforeMB
[ 2.621664, 1.595128, 0.977768, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
0.8623496760791084
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.139936
PromotedMB
0.46464
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
2109.6783
DurationMSec
2.252100000000155
PauseDurationMSec
2.2735999999999876
SuspendDurationMSec
0.0039000000001578883
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
294.0591999999999
PauseStartRelativeMSec
2109.6636
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4139936
TotalPromoted464640
Depth0
GenerationSize0584
TotalPromotedSize0464640
GenerationSize12770080
TotalPromotedSize10
GenerationSize2977768
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize4100
FinalizationPromotedCount2
PinnedObjectCount1
SinkBlockCount1
GCHandleCount369
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount8
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.585488
RatioPeakAfter
1.4868848214078676
AllocRateMBSec
8.792406427005176
HeapSizePeakMB
6.155608000000001
UserAllocated
[ 2.585488, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.155608000000001
GenSizeBeforeMB
[ 2.621576, 2.29544, 0.977768, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
0.767245475357432
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2N
HeapSizeAfterMB
6.314584
PromotedMB
4.54412
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7978.8389
DurationMSec
8.957100000000537
PauseDurationMSec
9.025899999999638
SuspendDurationMSec
0.03120000000035361
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
5866.8578
PauseStartRelativeMSec
7978.7891
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6314584
TotalPromoted4544120
Depth2
GenerationSize01410472
TotalPromotedSize01334008
GenerationSize11336984
TotalPromotedSize11975552
GenerationSize22953144
TotalPromotedSize2973800
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize4353160
TotalPromotedSize40
FinalizationPromotedSize11474
FinalizationPromotedCount11
PinnedObjectCount3
SinkBlockCount2
GCHandleCount666
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration2
Gen0ReductionCount7
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.408848
RatioPeakAfter
1.0506066591243384
AllocRateMBSec
0.4105857142131517
HeapSizePeakMB
6.634144000000001
UserAllocated
[ 2.408848, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.634144000000001
GenSizeBeforeMB
[ 2.625472, 2.77008, 0.977768, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
0.1536092349819592
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
9.026168
PromotedMB
1.445144
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7997.0836
DurationMSec
4.774500000000444
PauseDurationMSec
4.850000000000364
SuspendDurationMSec
0.04989999999997963
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
9.224900000000162
PauseStartRelativeMSec
7997.022
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9026168
TotalPromoted1445144
Depth0
GenerationSize02330816
TotalPromotedSize01445144
GenerationSize12769784
TotalPromotedSize10
GenerationSize22953144
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize144
FinalizationPromotedCount6
PinnedObjectCount4
SinkBlockCount2
GCHandleCount831
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount1
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.33448
RatioPeakAfter
0.797881005538563
AllocRateMBSec
253.0629058309531
HeapSizePeakMB
7.201808000000001
UserAllocated
[ 2.33448, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.201808000000001
GenSizeBeforeMB
[ 2.650856, 1.336984, 2.953144, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
34.458504145679065
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.735384
PromotedMB
1.558576
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
8008.3929
DurationMSec
3.5455000000001746
PauseDurationMSec
3.6338999999998123
SuspendDurationMSec
0.06040000000029977
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
6.462800000000243
PauseStartRelativeMSec
8008.3219
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10735384
TotalPromoted1558576
Depth0
GenerationSize00
TotalPromotedSize01558576
GenerationSize16533776
TotalPromotedSize10
GenerationSize22953144
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize4987640
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount3
GCHandleCount997
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount351
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.40612
RatioPeakAfter
0.8057764864302943
AllocRateMBSec
372.30302655194487
HeapSizePeakMB
8.650319999999999
UserAllocated
[ 2.40612, 0, 0, 0, 0 ]
HeapSizeBeforeMB
8.650319999999999
GenSizeBeforeMB
[ 2.666568, 2.769784, 2.953144, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
35.99096734576438
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
21.0096
PromotedMB
8.704536
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
8074.683
DurationMSec
7.940099999999802
PauseDurationMSec
8.29740000000038
SuspendDurationMSec
0.10040000000026339
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
62.533800000000156
PauseStartRelativeMSec
8074.4793
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize21009600
TotalPromoted8704536
Depth1
GenerationSize04538512
TotalPromotedSize05298240
GenerationSize17438360
TotalPromotedSize13406296
GenerationSize26338144
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize42433760
TotalPromotedSize40
FinalizationPromotedSize144
FinalizationPromotedCount6
PinnedObjectCount5
SinkBlockCount3
GCHandleCount1667
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration1
Gen0ReductionCount351
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated3560
FreeListConsumed3600
AllocedSinceLastGCMB
17.444703999999998
RatioPeakAfter
1.3160300053308964
AllocRateMBSec
278.9644000524509
HeapSizePeakMB
27.649264000000002
UserAllocated
[ 17.44464, 0, 0, 6.40000000000085E-05, 0 ]
HeapSizeBeforeMB
27.649264000000002
GenSizeBeforeMB
[ 17.90152, 6.533776, 2.953144, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
11.714329278623428
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
24.82644
PromotedMB
1.9278
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
8135.5788
DurationMSec
2.743899999999485
PauseDurationMSec
3.055199999999786
SuspendDurationMSec
0.20280000000002474
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
52.66579999999976
PauseStartRelativeMSec
8135.2901
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize24826440
TotalPromoted1927800
Depth0
GenerationSize06577608
TotalPromotedSize01927800
GenerationSize19063664
TotalPromotedSize10
GenerationSize26338144
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize42586200
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount6
GCHandleCount1669
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount111
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
18.09708
RatioPeakAfter
1.3026315492676355
AllocRateMBSec
343.62109756236646
HeapSizePeakMB
32.339704
UserAllocated
[ 18.09708, 0, 0, 0, 0 ]
HeapSizeBeforeMB
32.339704
GenSizeBeforeMB
[ 18.302376, 7.438359999999999, 6.338144, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
5.483031532097074
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
22.617696
PromotedMB
1.802112
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
8160.0555
DurationMSec
2.8312999999998283
PauseDurationMSec
3.1655000000000655
SuspendDurationMSec
0.22730000000046857
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
21.426399999999376
PauseStartRelativeMSec
8159.7503
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize22617696
TotalPromoted1802112
Depth0
GenerationSize02258192
TotalPromotedSize01802112
GenerationSize110717016
TotalPromotedSize10
GenerationSize26338144
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize43043520
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount9
GCHandleCount1697
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount49
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.844
RatioPeakAfter
1.4936333037635665
AllocRateMBSec
832.8043908449632
HeapSizePeakMB
33.782544
UserAllocated
[ 17.844, 0, 0, 0, 0 ]
HeapSizeBeforeMB
33.782544
GenSizeBeforeMB
[ 18.119912, 9.063664, 6.338144, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
12.872124561339861
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
21.855792
PromotedMB
1.770536
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
8184.2475
DurationMSec
2.5262999999995372
PauseDurationMSec
2.9106000000001586
SuspendDurationMSec
0.2682999999997264
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
21.001400000000103
PauseStartRelativeMSec
8183.8893
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize21855792
TotalPromoted1770536
Depth0
GenerationSize00
TotalPromotedSize01770536
GenerationSize112213304
TotalPromotedSize10
GenerationSize26338144
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize43043520
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount10
GCHandleCount1703
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount114
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.710056
RatioPeakAfter
1.6127408240341963
AllocRateMBSec
843.279781347906
HeapSizePeakMB
35.247727999999995
UserAllocated
[ 17.710056, 0, 0, 0, 0 ]
HeapSizeBeforeMB
35.247727999999995
GenSizeBeforeMB
[ 17.931744, 10.717016, 6.338144, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
12.172131147541513
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
26.636736
PromotedMB
11.750672
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
14
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
8207.4389
DurationMSec
11.207700000000841
PauseDurationMSec
1.814300000000003
SuspendDurationMSec
0.5090000000000146
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
7.6974000000009255
PauseStartRelativeMSec
8207.1117
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.5691999999999098
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize26636736
TotalPromoted11750672
Depth2
GenerationSize03034656
TotalPromotedSize01752432
GenerationSize113807152
TotalPromotedSize13406296
GenerationSize26338144
TotalPromotedSize26331184
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize43195960
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount12
GCHandleCount1728
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.3756892736407345
AllocRateMBSec
0
HeapSizePeakMB
36.643872
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
18.812272
GenSizeBeforeMB
[ 0, 12.213304, 6.338144, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
15.248111242189475
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
23.48672
PromotedMB
1.752432
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
8208.3648
DurationMSec
2.585300000000643
PauseDurationMSec
3.045700000000579
SuspendDurationMSec
0
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
21.589499999999134
PauseStartRelativeMSec
8208.3648
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize23486720
TotalPromoted1752432
Depth0
GenerationSize00
TotalPromotedSize01752432
GenerationSize113807152
TotalPromotedSize10
GenerationSize26338144
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize43080600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount10
GCHandleCount1729
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount105
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure0
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.874136
RatioPeakAfter
1.560195378494741
AllocRateMBSec
827.9087519396334
HeapSizePeakMB
36.643872
UserAllocated
[ 17.613312, 0, 0, 0.260824, 0 ]
HeapSizeBeforeMB
36.643872
GenSizeBeforeMB
[ 17.831599999999998, 12.213304, 6.338144, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
12.363203870886434
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
20.446296
PromotedMB
5.485128
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
8234.5014
DurationMSec
3.880800000000818
PauseDurationMSec
4.126299999999901
SuspendDurationMSec
0.13059999999859428
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
15.636000000000422
PauseStartRelativeMSec
8234.2849
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize20446296
TotalPromoted5485128
Depth1
GenerationSize00
TotalPromotedSize0860376
GenerationSize16089584
TotalPromotedSize14624752
GenerationSize210887568
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize43208320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount11
SinkBlockCount11
GCHandleCount1729
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration1
Gen0ReductionCount103
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated840
FreeListConsumed840
AllocedSinceLastGCMB
15.508527999999998
RatioPeakAfter
1.7820714324002742
AllocRateMBSec
991.8475313379113
HeapSizePeakMB
36.43676
UserAllocated
[ 15.508591999999998, 0, 0, -6.4E-05, 0 ]
HeapSizeBeforeMB
36.43676
GenSizeBeforeMB
[ 16.030640000000002, 13.807152, 6.338144, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
20.879654696061863
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
17.848848
PromotedMB
0.960944
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
8278.5256
DurationMSec
2.400599999999031
PauseDurationMSec
2.884600000001228
SuspendDurationMSec
0.27180000000043947
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
39.699399999999514
PauseStartRelativeMSec
8278.0832
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize17848848
TotalPromoted960944
Depth1
GenerationSize00
TotalPromotedSize0885216
GenerationSize13429672
TotalPromotedSize175728
GenerationSize210945912
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize43212440
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount15
GCHandleCount1729
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount2000143
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated600
FreeListConsumed600
AllocedSinceLastGCMB
33.81385600000001
RatioPeakAfter
2.875763858821589
AllocRateMBSec
851.7472808153378
HeapSizePeakMB
51.329072000000004
UserAllocated
[ 33.81379200000001, 0, 0, 6.4E-05, 0 ]
HeapSizeBeforeMB
51.329072000000004
GenSizeBeforeMB
[ 34.091096, 6.089584, 10.887568, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
6.773905692281557
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
16.638992
PromotedMB
0.91788
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
8322.028
DurationMSec
1.4411999999992986
PauseDurationMSec
1.8405000000002474
SuspendDurationMSec
0.21770000000105938
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
40.72869999999966
PauseStartRelativeMSec
8321.6562
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize16638992
TotalPromoted917880
Depth1
GenerationSize00
TotalPromotedSize0893696
GenerationSize12204200
TotalPromotedSize124184
GenerationSize210961528
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize43212440
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount19
GCHandleCount1730
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount55
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
35.369216
RatioPeakAfter
3.021218112251031
AllocRateMBSec
868.4101383054282
HeapSizePeakMB
50.270024
UserAllocated
[ 35.369216, 0, 0, 0, 0 ]
HeapSizeBeforeMB
50.270024
GenSizeBeforeMB
[ 35.633615999999996, 3.429672, 10.945912, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
4.323548481062015
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
16.696344
PromotedMB
0.889888
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
8364.0042
DurationMSec
1.2793000000001484
PauseDurationMSec
1.6515999999992346
SuspendDurationMSec
0.19620000000031723
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
40.18419999999969
PauseStartRelativeMSec
8363.6548
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize16696344
TotalPromoted889888
Depth1
GenerationSize00
TotalPromotedSize0881320
GenerationSize12261552
TotalPromotedSize18568
GenerationSize210961528
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize43212440
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount23
GCHandleCount1729
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount33
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
34.810736
RatioPeakAfter
2.9058141111611016
AllocRateMBSec
866.279184356047
HeapSizePeakMB
48.51647199999999
UserAllocated
[ 34.810736, 0, 0, 0, 0 ]
HeapSizeBeforeMB
48.51647199999999
GenSizeBeforeMB
[ 35.08991999999999, 2.2042, 10.961528000000001, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
3.9478150292316077
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
19.114256
PromotedMB
0.885376
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
8405.4777
DurationMSec
1.3168000000005122
PauseDurationMSec
1.7041000000008353
SuspendDurationMSec
0.2084000000013475
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
39.83089999999902
PauseStartRelativeMSec
8405.1156
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize19114256
TotalPromoted885376
Depth1
GenerationSize02447912
TotalPromotedSize0876808
GenerationSize12223240
TotalPromotedSize18568
GenerationSize210969840
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize43212440
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount26
GCHandleCount1728
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount30
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
35.000904
RatioPeakAfter
2.5492319449943537
AllocRateMBSec
878.7374626232613
HeapSizePeakMB
48.726672
UserAllocated
[ 35.000904, 0, 0, 0, 0 ]
HeapSizeBeforeMB
48.726672
GenSizeBeforeMB
[ 35.242768, 2.261552, 10.961528000000001, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
4.102804863370269
(939 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.6511039624609807
MeanSizeAfterMB
27.605196721584992
MeanSizePeakMB
83.14917735974976
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
959
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
9.025899999999638
TotalPauseTimeMSec
1583.4087000000804
MaxSuspendDurationMSec
7.019400000001042
MaxSizePeakMB
100.47995200000001
MaxAllocRateMBSec
2431.5378006209435
TotalAllocatedMB
58338.47213599994
TotalCpuMSec
0
TotalPromotedMB
1290.7445840000005
TotalSizeAfterMB
26473.38365600001
TotalSizePeakMB
79740.06108800002
FinalizedObjects(empty)
ProcessDuration
37585.7427
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.624078714859549
MeanSizeAfterMB
30.391437761713544
MeanSizePeakMB
88.43068538688094
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
747
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
7.846700000001874
TotalPauseTimeMSec
1213.1868000000832
MaxSuspendDurationMSec
6.07390000000305
MaxSizePeakMB
100.47995200000001
MaxAllocRateMBSec
2431.5378006209435
TotalAllocatedMB
47934.352935999996
TotalCpuMSec
0
TotalPromotedMB
1068.978696000001
TotalSizeAfterMB
22702.404008000016
TotalSizePeakMB
66057.72198400006
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.7108636363636425
MeanSizeAfterMB
17.640133167464118
MeanSizePeakMB
64.81622698564594
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
209
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
8.402099999999336
TotalPauseTimeMSec
357.5705000000013
MaxSuspendDurationMSec
7.019400000001042
MaxSizePeakMB
84.85144
MaxAllocRateMBSec
2422.9371184484644
TotalAllocatedMB
10401.710352000004
TotalCpuMSec
0
TotalPromotedMB
187.69304800000003
TotalSizeAfterMB
3686.787832000001
TotalSizePeakMB
13546.59144
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
4.2171333333320336
MeanSizeAfterMB
28.06393866666666
MeanSizePeakMB
45.24922133333333
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
3
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
9.025899999999638
TotalPauseTimeMSec
12.651399999996102
MaxSuspendDurationMSec
0.5090000000000146
MaxSizePeakMB
92.46964799999999
MaxAllocRateMBSec
0.4105857142131517
TotalAllocatedMB
2.408848
TotalCpuMSec
0
TotalPromotedMB
34.07284
TotalSizeAfterMB
84.19181599999999
TotalSizePeakMB
135.747664
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2N
HeapSizeAfterMB
6.314584
PromotedMB
4.54412
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7978.8389
DurationMSec
8.957100000000537
PauseDurationMSec
9.025899999999638
SuspendDurationMSec
0.03120000000035361
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
5866.8578
PauseStartRelativeMSec
7978.7891
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6314584
TotalPromoted4544120
Depth2
GenerationSize01410472
TotalPromotedSize01334008
GenerationSize11336984
TotalPromotedSize11975552
GenerationSize22953144
TotalPromotedSize2973800
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize4353160
TotalPromotedSize40
FinalizationPromotedSize11474
FinalizationPromotedCount11
PinnedObjectCount3
SinkBlockCount2
GCHandleCount666
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration2
Gen0ReductionCount7
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.408848
RatioPeakAfter
1.0506066591243384
AllocRateMBSec
0.4105857142131517
HeapSizePeakMB
6.634144000000001
UserAllocated
[ 2.408848, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.634144000000001
GenSizeBeforeMB
[ 2.625472, 2.77008, 0.977768, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
0.1536092349819592
BGCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
26.636736
PromotedMB
11.750672
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
14
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
8207.4389
DurationMSec
11.207700000000841
PauseDurationMSec
1.814300000000003
SuspendDurationMSec
0.5090000000000146
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
7.6974000000009255
PauseStartRelativeMSec
8207.1117
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.5691999999999098
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize26636736
TotalPromoted11750672
Depth2
GenerationSize03034656
TotalPromotedSize01752432
GenerationSize113807152
TotalPromotedSize13406296
GenerationSize26338144
TotalPromotedSize26331184
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize43195960
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount12
GCHandleCount1728
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.3756892736407345
AllocRateMBSec
0
HeapSizePeakMB
36.643872
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
18.812272
GenSizeBeforeMB
[ 0, 12.213304, 6.338144, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
15.248111242189475
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
51.240496
PromotedMB
17.778048
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
504
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
23391.5776
DurationMSec
20.124799999997776
PauseDurationMSec
1.811199999996461
SuspendDurationMSec
0.27339999999821885
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
16.915099999998347
PauseStartRelativeMSec
23391.1413
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.6855999999970663
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize51240496
TotalPromoted17778048
Depth2
GenerationSize020578592
TotalPromotedSize01475584
GenerationSize18474984
TotalPromotedSize16479872
GenerationSize217584720
TotalPromotedSize29561832
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize44341376
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount39
GCHandleCount1769
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.8046204704966164
AllocRateMBSec
0
HeapSizePeakMB
92.46964799999999
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
26.185304000000002
GenSizeBeforeMB
[ 1.367328, 6.972432, 17.58472, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
8.038850047820643
GCThreadIDsToHeapNumbers(empty)
DurationMSec
40329.1735
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="204172"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesPlatformDapper_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 1:23:31 PM"\\r\\n SessionEndTime="8/21/2023 1:24:15 PM"\\r\\n SessionDuration...
Events
[ <Event MSec= "0.0000" PID="6196" PName="PerfView" TID="1680" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 1:24:13 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="539" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 1:23:31 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="6196" PName="PerfView" TID="1680" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "10.1919" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="6196" PName="PerfView" TID="1680" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "10.1601" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "10.1919" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "10.2127" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "10.2127" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", - "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337155556909.1
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="6196" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="153.8256" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmp611F.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="44307.6731" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", - "
Count108
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="1680" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337155556909.1" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337155556909.1" /> ... (more) ]
Count1404
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", - "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="100" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1207" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="167" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="28" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", - " ... (more) ]
Count78
(values)
indexvalue
0\r\n", - "
1\r\n", - "
2\r\n", - "
3\r\n", - "
4\r\n", - "
5\r\n", - "
6\r\n", - "
7\r\n", - "
8\r\n", - "
9\r\n", - "
10\r\n", - "
11\r\n", - "
12\r\n", - "
13\r\n", - "
14\r\n", - "
15\r\n", - "
16\r\n", - "
17\r\n", - "
18\r\n", - "
19\r\n", - "
... (more)
MaxEventIndex204172
EventCount
204172
Size
37937987
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesPlatformDapper_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", - "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", - "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", - "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", - "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", - " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", - " at lambda_method760(Closure, TraceLog)\r\n", - " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 13:23:31Z
SessionEndTime2023-08-21 13:24:15Z
SessionEndTimeRelativeMSec
44307.6731
SessionDuration00:00:44.3076731
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [98, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [100, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [101, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesPlatformDapper_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
PlatformBenchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\t1uyvzyb.rhh\\src\\BenchmarksApps\\TechEmpower\\PlatformBenchmarks\\published\\PlatformBenchmarks.exe"  
NumberOfHeapCountSwitches
8
Benchmark
FortunesPlatformDapper
Id
datas_3 | FortunesPlatformDapper
TotalSuspensionTimeMSec
164.21770000013737
PercentPauseTimeInGC
4.212790771858502
PercentTimeInGC
3.7758758988150656
MeanHeapSizeBeforeMB
83.14917735974976
MaxHeapSizeMB
100.47995200000001
TotalAllocationsMB
58338.47213599994
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesPlatformDapper_Windows.gc.etl.zip
ProcessName
PlatformBenchmarks
datas_3 | FortunesPlatformEF
Submission#4+LoadInfo
WorkingSetMB
205
PrivateMemoryMB
165
Latency50thMS
1.26
Latency75thMS
1.57
Latency90thMS
2.39
Latency99thMS
7.31
MeanLatencyMS
1.52
ProcessId
5128
RequestsPerMSec
367.082
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
PlatformBenchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\eajiv1lf.mwy\\src\\BenchmarksApps\\TechEmpower\\PlatformBenchmarks\\published\\PlatformBenchmarks.exe"  
ProcessID
5128
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.306576
PromotedMB
1.044504
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
738.4905
DurationMSec
4.133199999999988
PauseDurationMSec
4.3547000000000935
SuspendDurationMSec
0.004900000000020555
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
738.3109
PauseStartRelativeMSec
738.3109
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1306576
TotalPromoted1044504
Depth0
GenerationSize0584
TotalPromotedSize01044504
GenerationSize11054696
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize45384
FinalizationPromotedCount27
PinnedObjectCount1
SinkBlockCount1
GCHandleCount296
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
2.098719094794333
AllocRateMBSec
0
HeapSizePeakMB
2.742136
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.742136
GenSizeBeforeMB
[ 2.62152, 0, 0, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
0.586360806263289
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
1.71672
PromotedMB
1.458632
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
1029.3298
DurationMSec
3.42229999999995
PauseDurationMSec
3.456899999999905
SuspendDurationMSec
0.004500000000007276
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
286.6775000000001
PauseStartRelativeMSec
1029.3022
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1716720
TotalPromoted1458632
Depth1
GenerationSize0584
TotalPromotedSize0480672
GenerationSize1486880
TotalPromotedSize1977960
GenerationSize2977960
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize760
FinalizationPromotedCount27
PinnedObjectCount1
SinkBlockCount1
GCHandleCount309
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.581392
RatioPeakAfter
2.211752644578033
AllocRateMBSec
9.004515527029499
HeapSizePeakMB
3.7969600000000003
UserAllocated
[ 2.581392, 0, 0, 0, 0 ]
HeapSizeBeforeMB
3.7969600000000003
GenSizeBeforeMB
[ 2.621648, 1.054696, 0, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
1.1914822923444806
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
2.310304
PromotedMB
0.585456
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
1300.7953
DurationMSec
1.7543000000000575
PauseDurationMSec
1.774900000000116
SuspendDurationMSec
0.004100000000107684
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
268.02600000000007
PauseStartRelativeMSec
1300.779
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize2310304
TotalPromoted585456
Depth0
GenerationSize0584
TotalPromotedSize0585456
GenerationSize11080464
TotalPromotedSize10
GenerationSize2977960
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount1
GCHandleCount285
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount11
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.584312
RatioPeakAfter
1.8210174938016817
AllocRateMBSec
9.642019804048859
HeapSizePeakMB
4.207104
UserAllocated
[ 2.584312, 0, 0, 0, 0 ]
HeapSizeBeforeMB
4.207104
GenSizeBeforeMB
[ 2.621648, 0.48688, 0.97796, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
0.6578554778727999
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
2.69228
PromotedMB
0.373584
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
1593.8476
DurationMSec
1.5087999999998374
PauseDurationMSec
1.530100000000175
SuspendDurationMSec
0.005400000000008731
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
291.2812999999999
PauseStartRelativeMSec
1593.8319
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize2692280
TotalPromoted373584
Depth0
GenerationSize0584
TotalPromotedSize0373584
GenerationSize11462440
TotalPromotedSize10
GenerationSize2977960
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount1
GCHandleCount285
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount6
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.577816
RatioPeakAfter
1.7831013118992085
AllocRateMBSec
8.849919304809477
HeapSizePeakMB
4.800608
UserAllocated
[ 2.577816, 0, 0, 0, 0 ]
HeapSizeBeforeMB
4.800608
GenSizeBeforeMB
[ 2.621568, 1.080464, 0.97796, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
0.522554791241111
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
3.51984
PromotedMB
0.678984
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
5
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
1838.7106
DurationMSec
2.0628999999998996
PauseDurationMSec
2.088999999999942
SuspendDurationMSec
0.006300000000010186
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
243.33490000000006
PauseStartRelativeMSec
1838.6922
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3519840
TotalPromoted678984
Depth0
GenerationSize0584
TotalPromotedSize0678984
GenerationSize12149792
TotalPromotedSize10
GenerationSize2977960
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount1
GCHandleCount286
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount5
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.7197039999999997
RatioPeakAfter
1.5122232828764945
AllocRateMBSec
11.176793793245437
HeapSizePeakMB
5.322784
UserAllocated
[ 2.579528, 0, 0, 0.140176, 0 ]
HeapSizeBeforeMB
5.322784
GenSizeBeforeMB
[ 2.62156, 1.46244, 0.97796, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
0.851180345516448
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.461248
PromotedMB
0.60376
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
2157.3384
DurationMSec
2.408300000000054
PauseDurationMSec
2.435599999999795
SuspendDurationMSec
0.004299999999602733
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
316.5454000000002
PauseStartRelativeMSec
2157.3198
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6461248
TotalPromoted603760
Depth0
GenerationSize02327064
TotalPromotedSize0603760
GenerationSize12764720
TotalPromotedSize10
GenerationSize2977960
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize12712
FinalizationPromotedCount6
PinnedObjectCount2
SinkBlockCount2
GCHandleCount414
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount8
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.567096
RatioPeakAfter
0.9301868617332133
AllocRateMBSec
8.109724545041558
HeapSizePeakMB
6.010168000000001
UserAllocated
[ 2.567096, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.010168000000001
GenSizeBeforeMB
[ 2.621592, 2.149792, 0.97796, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
0.7635564500706296
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2N
HeapSizeAfterMB
4.761616
PromotedMB
4.541288
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
8730.8448
DurationMSec
11.362499999999272
PauseDurationMSec
11.480899999998655
SuspendDurationMSec
0.042399999998451676
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
6571.0275
PauseStartRelativeMSec
8730.7751
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4761616
TotalPromoted4541288
Depth2
GenerationSize0584
TotalPromotedSize01156424
GenerationSize11172664
TotalPromotedSize12054600
GenerationSize23032560
TotalPromotedSize2971152
GenerationSize3359208
TotalPromotedSize3359112
GenerationSize4196600
TotalPromotedSize40
FinalizationPromotedSize42113
FinalizationPromotedCount31
PinnedObjectCount1
SinkBlockCount4
GCHandleCount880
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration2
Gen0ReductionCount7
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.608256
RatioPeakAfter
1.4138796576624408
AllocRateMBSec
0.396932747580192
HeapSizePeakMB
6.732352000000001
UserAllocated
[ 2.509904, 0, 0, 0.098352, 0 ]
HeapSizeBeforeMB
6.732352000000001
GenSizeBeforeMB
[ 2.630464, 2.76472, 0.97796, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
0.17441527305910703
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
8.871808
PromotedMB
1.524584
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
8756.6874
DurationMSec
8.261999999998807
PauseDurationMSec
8.44839999999931
SuspendDurationMSec
0.1602999999995518
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
14.305700000000797
PauseStartRelativeMSec
8756.5141
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8871808
TotalPromoted1524584
Depth0
GenerationSize02480304
TotalPromotedSize01524584
GenerationSize12708376
TotalPromotedSize10
GenerationSize23032560
TotalPromotedSize20
GenerationSize3359208
TotalPromotedSize30
GenerationSize4291360
TotalPromotedSize40
FinalizationPromotedSize423923
FinalizationPromotedCount338
PinnedObjectCount2
SinkBlockCount4
GCHandleCount1430
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount1
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.308016
RatioPeakAfter
0.8099823621070249
AllocRateMBSec
161.3354117589402
HeapSizePeakMB
7.186008
UserAllocated
[ 2.308016, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.186008
GenSizeBeforeMB
[ 2.621576, 1.172664, 3.03256, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
37.129132771673106
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.56024
PromotedMB
1.468648
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
8772.8221
DurationMSec
7.133700000000317
PauseDurationMSec
7.533600000000661
SuspendDurationMSec
0.3629000000000815
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
7.488199999999779
PauseStartRelativeMSec
8772.4386
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10560240
TotalPromoted1468648
Depth0
GenerationSize02549320
TotalPromotedSize01468648
GenerationSize14175352
TotalPromotedSize10
GenerationSize23032560
TotalPromotedSize20
GenerationSize3359208
TotalPromotedSize30
GenerationSize4443800
TotalPromotedSize40
FinalizationPromotedSize111451
FinalizationPromotedCount349
PinnedObjectCount3
SinkBlockCount5
GCHandleCount1678
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount373
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.278496
RatioPeakAfter
0.8271516556441899
AllocRateMBSec
304.2781976977201
HeapSizePeakMB
8.73492
UserAllocated
[ 2.278496, 0, 0, 0, 0 ]
HeapSizeBeforeMB
8.73492
GenSizeBeforeMB
[ 2.634776, 2.708376, 3.03256, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
50.15111371473752
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
19.438144
PromotedMB
11.982552
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
8849.8307
DurationMSec
14.08849999999984
PauseDurationMSec
14.53019999999924
SuspendDurationMSec
0.15719999999964784
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
69.61679999999978
PauseStartRelativeMSec
8849.5735
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize19438144
TotalPromoted11982552
Depth1
GenerationSize02560184
TotalPromotedSize08700216
GenerationSize18781376
TotalPromotedSize13282336
GenerationSize26317136
TotalPromotedSize20
GenerationSize3359208
TotalPromotedSize30
GenerationSize41420240
TotalPromotedSize40
FinalizationPromotedSize23236
FinalizationPromotedCount381
PinnedObjectCount4
SinkBlockCount6
GCHandleCount2102
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration1
Gen0ReductionCount474
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated6680
FreeListConsumed6808
AllocedSinceLastGCMB
17.096208
RatioPeakAfter
1.3236132009311175
AllocRateMBSec
245.5758954735072
HeapSizePeakMB
25.728583999999998
UserAllocated
[ 17.096112, 0, 0, 9.60000000000405E-05, 0 ]
HeapSizeBeforeMB
25.728583999999998
GenSizeBeforeMB
[ 18.161464, 4.175352, 3.03256, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
17.26763877500019
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
24.947584
PromotedMB
1.395848
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
8961.9021
DurationMSec
3.1838000000007014
PauseDurationMSec
3.529399999999441
SuspendDurationMSec
0.20759999999972933
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
97.66140000000087
PauseStartRelativeMSec
8961.5822
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize24947584
TotalPromoted1395848
Depth0
GenerationSize06370912
TotalPromotedSize01395848
GenerationSize110150488
TotalPromotedSize10
GenerationSize26317136
TotalPromotedSize20
GenerationSize3359208
TotalPromotedSize30
GenerationSize41749840
TotalPromotedSize40
FinalizationPromotedSize144
FinalizationPromotedCount6
PinnedObjectCount6
SinkBlockCount8
GCHandleCount1756
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount167
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.75012
RatioPeakAfter
1.3402025623002214
AllocRateMBSec
181.75164394530327
HeapSizePeakMB
33.434816000000005
UserAllocated
[ 17.75012, 0, 0, 0, 0 ]
HeapSizeBeforeMB
33.434816000000005
GenSizeBeforeMB
[ 17.977096000000003, 8.781376, 6.317136, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
3.487866485885506
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
21.733328
PromotedMB
1.065216
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
8990.15
DurationMSec
2.1635000000005675
PauseDurationMSec
2.4544999999998254
SuspendDurationMSec
0.17929999999978463
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
24.795599999999467
PauseStartRelativeMSec
8989.8832
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize21733328
TotalPromoted1065216
Depth0
GenerationSize02958896
TotalPromotedSize01065216
GenerationSize110150488
TotalPromotedSize10
GenerationSize26317136
TotalPromotedSize20
GenerationSize3359208
TotalPromotedSize30
GenerationSize41947600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount10
GCHandleCount1755
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount31
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.877119999999998
RatioPeakAfter
1.6082687382254572
AllocRateMBSec
720.979528626062
HeapSizePeakMB
34.953032
UserAllocated
[ 17.877119999999998, 0, 0, 0, 0 ]
HeapSizeBeforeMB
34.953032
GenSizeBeforeMB
[ 18.126199999999997, 10.150488, 6.317136, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
9.007306395205482
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
24.107728
PromotedMB
10.967936
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
13
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
9015.8329
DurationMSec
16.961100000000442
PauseDurationMSec
2.6670000000012806
SuspendDurationMSec
0.45930000000043947
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
14.093199999999342
PauseStartRelativeMSec
9015.5511
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
2.474100000001272
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize24107728
TotalPromoted10967936
Depth2
GenerationSize05296216
TotalPromotedSize01057816
GenerationSize110150488
TotalPromotedSize13282336
GenerationSize26317136
TotalPromotedSize26268672
GenerationSize3359208
TotalPromotedSize3359112
GenerationSize41984680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount15
PinnedObjectCount0
SinkBlockCount13
GCHandleCount1762
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.4479128020691125
AllocRateMBSec
0
HeapSizePeakMB
34.905888000000004
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
19.785727999999995
GenSizeBeforeMB
[ 2.958896, 10.150488, 6.317136, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
12.711058410845716
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
19.859976
PromotedMB
1.057816
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
9016.8139
DurationMSec
1.8934000000008382
PauseDurationMSec
2.478500000001077
SuspendDurationMSec
0
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
24.498999999999796
PauseStartRelativeMSec
9016.8139
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize19859976
TotalPromoted1057816
Depth0
GenerationSize01077304
TotalPromotedSize01057816
GenerationSize110150488
TotalPromotedSize10
GenerationSize26317136
TotalPromotedSize20
GenerationSize3359208
TotalPromotedSize30
GenerationSize41955840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount11
GCHandleCount1768
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount78
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure0
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
18.222864
RatioPeakAfter
1.7575997070691327
AllocRateMBSec
743.8207273766338
HeapSizePeakMB
34.905888000000004
UserAllocated
[ 17.863656000000002, 0, 0, 0.359208, 0 ]
HeapSizeBeforeMB
34.905888000000004
GenSizeBeforeMB
[ 18.079056, 10.150488, 6.317136, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
9.187285701050863
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
22.591888
PromotedMB
9.053696
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
9047.1128
DurationMSec
6.347899999998845
PauseDurationMSec
6.706900000001042
SuspendDurationMSec
0.23220000000037544
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
13.985199999999168
PauseStartRelativeMSec
9046.7869
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize22591888
TotalPromoted9053696
Depth1
GenerationSize0218392
TotalPromotedSize0527376
GenerationSize15262240
TotalPromotedSize18526320
GenerationSize214763248
TotalPromotedSize20
GenerationSize3359208
TotalPromotedSize30
GenerationSize41988800
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount10
SinkBlockCount13
GCHandleCount1756
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration1
Gen0ReductionCount69
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated30760
FreeListConsumed30880
AllocedSinceLastGCMB
13.928136000000002
RatioPeakAfter
1.426051333115674
AllocRateMBSec
995.9196865258152
HeapSizePeakMB
32.217192
UserAllocated
[ 13.928232000000001, 0, 0, -9.6E-05, 0 ]
HeapSizeBeforeMB
32.217192
GenSizeBeforeMB
[ 15.39036, 10.150488, 6.317136, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
32.412853214516524
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
26.222816
PromotedMB
24.595672
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
16
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
9077.9143
DurationMSec
12.903199999998833
PauseDurationMSec
2.064799999998286
SuspendDurationMSec
0.4404999999987922
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
10.787800000000061
PauseStartRelativeMSec
9077.6738
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.8589999999985594
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize26222816
TotalPromoted24595672
Depth2
GenerationSize03394848
TotalPromotedSize0966952
GenerationSize15712592
TotalPromotedSize18526320
GenerationSize214763248
TotalPromotedSize214743288
GenerationSize3359208
TotalPromotedSize3359112
GenerationSize41992920
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount16
GCHandleCount1763
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.4642360301807402
AllocRateMBSec
0
HeapSizePeakMB
38.396392
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
20.603088
GenSizeBeforeMB
[ 0.218392, 5.26224, 14.763248, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
12.387035292095769
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
22.953768
PromotedMB
0.966952
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
9077.9289
DurationMSec
2.101699999999255
PauseDurationMSec
2.5625999999992928
SuspendDurationMSec
0
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
24.466700000000856
PauseStartRelativeMSec
9077.9289
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize22953768
TotalPromoted966952
Depth0
GenerationSize0129920
TotalPromotedSize0966952
GenerationSize15712592
TotalPromotedSize10
GenerationSize214763248
TotalPromotedSize20
GenerationSize3359208
TotalPromotedSize30
GenerationSize41988800
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount16
GCHandleCount1756
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount185
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure0
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
18.166800000000002
RatioPeakAfter
1.6727707625170734
AllocRateMBSec
742.5112499846472
HeapSizePeakMB
38.396392
UserAllocated
[ 17.807688000000002, 0, 0, 0.359112, 0 ]
HeapSizeBeforeMB
38.396392
GenSizeBeforeMB
[ 18.011696, 5.26224, 14.763247999999999, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
9.48082266281139
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
19.223608
PromotedMB
0.552008
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
9106.844
DurationMSec
1.5306000000000495
PauseDurationMSec
1.8537999999989552
SuspendDurationMSec
0.26349999999911233
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
15.725400000001173
PauseStartRelativeMSec
9106.5452
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize19223608
TotalPromoted552008
Depth1
GenerationSize0475984
TotalPromotedSize0423256
GenerationSize11632248
TotalPromotedSize1128752
GenerationSize214763248
TotalPromotedSize20
GenerationSize3359208
TotalPromotedSize30
GenerationSize41992920
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount6
SinkBlockCount17
GCHandleCount1756
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration1
Gen0ReductionCount77
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
15.72392
RatioPeakAfter
1.9257284064469067
AllocRateMBSec
999.9058847468953
HeapSizePeakMB
37.019448000000004
UserAllocated
[ 15.72392, 0, 0, 0, 0 ]
HeapSizeBeforeMB
37.019448000000004
GenSizeBeforeMB
[ 16.1844, 5.712592000000001, 14.763247999999999, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
10.54541731136196
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
19.262152
PromotedMB
0.570024
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
9142.7297
DurationMSec
1.420799999999872
PauseDurationMSec
1.8619999999991705
SuspendDurationMSec
0.24530000000049768
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
33.95470000000023
PauseStartRelativeMSec
9142.3305
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize19262152
TotalPromoted570024
Depth1
GenerationSize0129920
TotalPromotedSize0441272
GenerationSize11766688
TotalPromotedSize1128752
GenerationSize215013416
TotalPromotedSize20
GenerationSize3359208
TotalPromotedSize30
GenerationSize41992920
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount21
GCHandleCount1756
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps11
CondemnedGeneration1
Gen0ReductionCount54
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated2240
FreeListConsumed2240
AllocedSinceLastGCMB
24.799352000000003
RatioPeakAfter
2.193041359034027
AllocRateMBSec
730.3658109186603
HeapSizePeakMB
42.242696
UserAllocated
[ 24.799256000000003, 0, 0, 9.6E-05, 0 ]
HeapSizeBeforeMB
42.242696
GenSizeBeforeMB
[ 25.487992, 1.6322480000000001, 14.763248, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
5.198692230158562
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
19.19928
PromotedMB
0.40936
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
9183.4031
DurationMSec
1.0976000000009662
PauseDurationMSec
1.4197999999996682
SuspendDurationMSec
0.1738999999997759
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
38.95329999999922
PauseStartRelativeMSec
9183.105
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize19199280
TotalPromoted409360
Depth1
GenerationSize0129920
TotalPromotedSize0398696
GenerationSize11697392
TotalPromotedSize110664
GenerationSize215015720
TotalPromotedSize20
GenerationSize3359208
TotalPromotedSize30
GenerationSize41997040
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount22
GCHandleCount1755
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps11
CondemnedGeneration1
Gen0ReductionCount39
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated40
FreeListConsumed40
AllocedSinceLastGCMB
27.813567999999997
RatioPeakAfter
2.3555479163801976
AllocRateMBSec
714.0234075161939
HeapSizePeakMB
45.224824000000005
UserAllocated
[ 27.813567999999997, 0, 0, 0, 0 ]
HeapSizeBeforeMB
45.224824000000005
GenSizeBeforeMB
[ 28.085512, 1.766688, 15.013416000000001, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
3.516697999409774
(1178 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.5748843906509737
MeanSizeAfterMB
34.97274916193652
MeanSizePeakMB
71.94718968948258
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1198
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
14.53019999999924
TotalPauseTimeMSec
1886.7114999998666
MaxSuspendDurationMSec
5.7128000000011525
MaxSizePeakMB
97.563216
MaxAllocRateMBSec
2401.459755122059
TotalAllocatedMB
49138.79155199996
TotalCpuMSec
0
TotalPromotedMB
1558.6049279999997
TotalSizeAfterMB
41897.35349599995
TotalSizePeakMB
86192.73324800014
FinalizedObjects(empty)
ProcessDuration
38295.6826
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.5916083715595069
MeanSizeAfterMB
36.27077295412846
MeanSizePeakMB
72.24469395412851
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
872
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
8.44839999999931
TotalPauseTimeMSec
1387.88249999989
MaxSuspendDurationMSec
5.7128000000011525
MaxSizePeakMB
97.563216
MaxAllocRateMBSec
2080.0175653086244
TotalAllocatedMB
35895.42004800003
TotalCpuMSec
0
TotalPromotedMB
1208.9146799999992
TotalSizeAfterMB
31628.114016000018
TotalSizePeakMB
62997.37312800006
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.4891545171338945
MeanSizeAfterMB
31.497972984423715
MeanSizePeakMB
71.53306472274146
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
321
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
14.53019999999924
TotalPauseTimeMSec
478.0185999999801
MaxSuspendDurationMSec
5.175200000001496
MaxSizePeakMB
95.92547199999998
MaxAllocRateMBSec
2401.459755122059
TotalAllocatedMB
13240.763248000005
TotalCpuMSec
0
TotalPromotedMB
255.11983999999998
TotalSizeAfterMB
10110.849328000013
TotalSizePeakMB
22962.113776000006
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
4.1620799999993325
MeanSizeAfterMB
31.6780304
MeanSizePeakMB
46.6492688
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
5
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
11.480899999998655
TotalPauseTimeMSec
20.810399999996662
MaxSuspendDurationMSec
0.45930000000043947
MaxSizePeakMB
80.79808799999999
MaxAllocRateMBSec
0.396932747580192
TotalAllocatedMB
2.608256
TotalCpuMSec
0
TotalPromotedMB
94.57040799999999
TotalSizeAfterMB
158.390152
TotalSizePeakMB
233.24634400000002
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2N
HeapSizeAfterMB
4.761616
PromotedMB
4.541288
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
8730.8448
DurationMSec
11.362499999999272
PauseDurationMSec
11.480899999998655
SuspendDurationMSec
0.042399999998451676
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
6571.0275
PauseStartRelativeMSec
8730.7751
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4761616
TotalPromoted4541288
Depth2
GenerationSize0584
TotalPromotedSize01156424
GenerationSize11172664
TotalPromotedSize12054600
GenerationSize23032560
TotalPromotedSize2971152
GenerationSize3359208
TotalPromotedSize3359112
GenerationSize4196600
TotalPromotedSize40
FinalizationPromotedSize42113
FinalizationPromotedCount31
PinnedObjectCount1
SinkBlockCount4
GCHandleCount880
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration2
Gen0ReductionCount7
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.608256
RatioPeakAfter
1.4138796576624408
AllocRateMBSec
0.396932747580192
HeapSizePeakMB
6.732352000000001
UserAllocated
[ 2.509904, 0, 0, 0.098352, 0 ]
HeapSizeBeforeMB
6.732352000000001
GenSizeBeforeMB
[ 2.630464, 2.76472, 0.97796, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
0.17441527305910703
BGCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
24.107728
PromotedMB
10.967936
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
13
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
9015.8329
DurationMSec
16.961100000000442
PauseDurationMSec
2.6670000000012806
SuspendDurationMSec
0.45930000000043947
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
14.093199999999342
PauseStartRelativeMSec
9015.5511
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
2.474100000001272
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize24107728
TotalPromoted10967936
Depth2
GenerationSize05296216
TotalPromotedSize01057816
GenerationSize110150488
TotalPromotedSize13282336
GenerationSize26317136
TotalPromotedSize26268672
GenerationSize3359208
TotalPromotedSize3359112
GenerationSize41984680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount15
PinnedObjectCount0
SinkBlockCount13
GCHandleCount1762
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.4479128020691125
AllocRateMBSec
0
HeapSizePeakMB
34.905888000000004
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
19.785727999999995
GenSizeBeforeMB
[ 2.958896, 10.150488, 6.317136, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
12.711058410845716
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
26.222816
PromotedMB
24.595672
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
16
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
9077.9143
DurationMSec
12.903199999998833
PauseDurationMSec
2.064799999998286
SuspendDurationMSec
0.4404999999987922
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
10.787800000000061
PauseStartRelativeMSec
9077.6738
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.8589999999985594
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize26222816
TotalPromoted24595672
Depth2
GenerationSize03394848
TotalPromotedSize0966952
GenerationSize15712592
TotalPromotedSize18526320
GenerationSize214763248
TotalPromotedSize214743288
GenerationSize3359208
TotalPromotedSize3359112
GenerationSize41992920
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount16
GCHandleCount1763
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.4642360301807402
AllocRateMBSec
0
HeapSizePeakMB
38.396392
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
20.603088
GenSizeBeforeMB
[ 0.218392, 5.26224, 14.763248, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
12.387035292095769
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
48.264304
PromotedMB
29.879088
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
51
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
10131.0776
DurationMSec
22.870600000000195
PauseDurationMSec
2.2377999999989697
SuspendDurationMSec
0.38369999999849824
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
20.37329999999929
PauseStartRelativeMSec
10130.7119
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
2.070799999999508
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize48264304
TotalPromoted29879088
Depth2
GenerationSize013757440
TotalPromotedSize01526736
GenerationSize19019648
TotalPromotedSize16559664
GenerationSize221458248
TotalPromotedSize221433576
GenerationSize3359208
TotalPromotedSize3359112
GenerationSize43669760
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount27
GCHandleCount2242
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.5003557080197405
AllocRateMBSec
0
HeapSizePeakMB
72.413624
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
29.281375999999998
GenSizeBeforeMB
[ 0, 7.46392, 21.458248, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
7.9072469552209155
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
55.033688
PromotedMB
24.586424
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
714
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
27303.0111
DurationMSec
15.399000000001251
PauseDurationMSec
2.3598999999994703
SuspendDurationMSec
0.21159999999872525
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
14.344499999999243
PauseStartRelativeMSec
27302.7066
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
2.285200000002078
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize55033688
TotalPromoted24586424
Depth2
GenerationSize011357344
TotalPromotedSize01165600
GenerationSize17863264
TotalPromotedSize1448
GenerationSize231091952
TotalPromotedSize223061264
GenerationSize3359208
TotalPromotedSize3359112
GenerationSize44361920
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount105
GCHandleCount2243
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.4681568860149805
AllocRateMBSec
0
HeapSizePeakMB
80.79808799999999
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
38.127496
GenSizeBeforeMB
[ 0, 6.67616, 31.092128, 0.359208, 0 ]
PauseTimePercentageSinceLastGC
11.88955749877486
GCThreadIDsToHeapNumbers(empty)
DurationMSec
41253.2051
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="175734"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesPlatformEF_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 1:32:49 PM"\\r\\n SessionEndTime="8/21/2023 1:33:34 PM"\\r\\n SessionDuration="00...
Events
[ <Event MSec= "0.0000" PID="10556" PName="PerfView" TID="3484" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 1:33:31 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="467" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 1:32:49 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="10556" PName="PerfView" TID="3484" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "12.1892" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="10556" PName="PerfView" TID="3484" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "12.1584" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "12.1892" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "12.2092" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "12.2092" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", - "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337154998955.5
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="10556" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="156.1483" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmpE4B2.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="45260.6477" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", - "
Count108
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="3484" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337154998955.5" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337154998955.5" /> ... (more) ]
Count1439
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", - "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="101" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1247" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="162" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="28" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", - " ... (more) ]
Count78
(values)
indexvalue
0\r\n", - "
1\r\n", - "
2\r\n", - "
3\r\n", - "
4\r\n", - "
5\r\n", - "
6\r\n", - "
7\r\n", - "
8\r\n", - "
9\r\n", - "
10\r\n", - "
11\r\n", - "
12\r\n", - "
13\r\n", - "
14\r\n", - "
15\r\n", - "
16\r\n", - "
17\r\n", - "
18\r\n", - "
19\r\n", - "
... (more)
MaxEventIndex175734
EventCount
175734
Size
32613074
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesPlatformEF_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", - "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", - "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", - "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", - "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", - " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", - " at lambda_method760(Closure, TraceLog)\r\n", - " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 13:32:49Z
SessionEndTime2023-08-21 13:33:34Z
SessionEndTimeRelativeMSec
45260.6477
SessionDuration00:00:45.2606477
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [99, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [101, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [102, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesPlatformEF_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
PlatformBenchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\eajiv1lf.mwy\\src\\BenchmarksApps\\TechEmpower\\PlatformBenchmarks\\published\\PlatformBenchmarks.exe"  
NumberOfHeapCountSwitches
11
Benchmark
FortunesPlatformEF
Id
datas_3 | FortunesPlatformEF
TotalSuspensionTimeMSec
220.88059999995596
PercentPauseTimeInGC
4.926695052564141
PercentTimeInGC
4.349918285566506
MeanHeapSizeBeforeMB
71.94718968948258
MaxHeapSizeMB
97.563216
TotalAllocationsMB
49138.79155199996
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesPlatformEF_Windows.gc.etl.zip
ProcessName
PlatformBenchmarks
datas_3 | FortunesPlatform
Submission#4+LoadInfo
WorkingSetMB
147
PrivateMemoryMB
119
Latency50thMS
1.05
Latency75thMS
1.34
Latency90thMS
2.23
Latency99thMS
10.25
MeanLatencyMS
1.46
ProcessId
8292
RequestsPerMSec
423.007
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
PlatformBenchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\cpfgawzs.fwo\\src\\BenchmarksApps\\TechEmpower\\PlatformBenchmarks\\published\\PlatformBenchmarks.exe"  
ProcessID
8292
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
1.293976
PromotedMB
1.031976
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
705.4792
DurationMSec
4.048800000000028
PauseDurationMSec
4.2637999999999465
SuspendDurationMSec
0.005299999999920146
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
705.3078
PauseStartRelativeMSec
705.3078
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1293976
TotalPromoted1031976
Depth0
GenerationSize0584
TotalPromotedSize01031976
GenerationSize11042096
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize45384
FinalizationPromotedCount27
PinnedObjectCount1
SinkBlockCount1
GCHandleCount297
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
2.11916758888882
AllocRateMBSec
0
HeapSizePeakMB
2.742152
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.742152
GenSizeBeforeMB
[ 2.621536, 0, 0, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
0.6008977811400493
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
1.781792
PromotedMB
1.456384
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
987.5585
DurationMSec
3.4986999999999853
PauseDurationMSec
3.558999999999969
SuspendDurationMSec
0.028299999999944703
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
277.9814
PauseStartRelativeMSec
987.5104
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize1781792
TotalPromoted1456384
Depth1
GenerationSize084504
TotalPromotedSize0478616
GenerationSize1468224
TotalPromotedSize1977768
GenerationSize2977768
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize760
FinalizationPromotedCount27
PinnedObjectCount3
SinkBlockCount1
GCHandleCount311
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.563968
RatioPeakAfter
2.123911208491227
AllocRateMBSec
9.223523588268854
HeapSizePeakMB
3.784368
UserAllocated
[ 2.563968, 0, 0, 0, 0 ]
HeapSizeBeforeMB
3.784368
GenSizeBeforeMB
[ 2.621656, 1.042096, 0, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
1.2641169793038474
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
2.309096
PromotedMB
0.603
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
1241.7662
DurationMSec
1.7690000000000055
PauseDurationMSec
1.7934000000000196
SuspendDurationMSec
0.0059000000001105946
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
250.69010000000003
PauseStartRelativeMSec
1241.7482
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize2309096
TotalPromoted603000
Depth0
GenerationSize0584
TotalPromotedSize0603000
GenerationSize11079448
TotalPromotedSize10
GenerationSize2977768
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount1
GCHandleCount286
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.577328
RatioPeakAfter
1.8210208670406083
AllocRateMBSec
10.28093251388866
HeapSizePeakMB
4.204912
UserAllocated
[ 2.577328, 0, 0, 0, 0 ]
HeapSizeBeforeMB
4.204912
GenSizeBeforeMB
[ 2.638304, 0.468224, 0.977768, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
0.710303841637184
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
2.721496
PromotedMB
0.403336
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
1527.2874
DurationMSec
1.6685999999999694
PauseDurationMSec
1.6965999999999894
SuspendDurationMSec
0.006900000000086948
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
283.7322999999999
PauseStartRelativeMSec
1527.2685
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize2721496
TotalPromoted403336
Depth0
GenerationSize0584
TotalPromotedSize0403336
GenerationSize11491848
TotalPromotedSize10
GenerationSize2977768
TotalPromotedSize20
GenerationSize3120616
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount1
GCHandleCount287
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount6
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.596856
RatioPeakAfter
1.763585910102385
AllocRateMBSec
9.152486340117077
HeapSizePeakMB
4.7995920000000005
UserAllocated
[ 2.596856, 0, 0, 0, 0 ]
HeapSizeBeforeMB
4.7995920000000005
GenSizeBeforeMB
[ 2.62176, 1.079448, 0.977768, 0.120616, 0 ]
PauseTimePercentageSinceLastGC
0.5944037201558743
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
3.636888
PromotedMB
0.764872
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
5
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
1796.5036
DurationMSec
2.2398000000000593
PauseDurationMSec
2.268299999999954
SuspendDurationMSec
0.006300000000010186
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
267.52660000000014
PauseStartRelativeMSec
1796.4834
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3636888
TotalPromoted764872
Depth0
GenerationSize0584
TotalPromotedSize0764872
GenerationSize12267032
TotalPromotedSize10
GenerationSize2977768
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize4130680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount1
GCHandleCount287
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount5
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.73072
RatioPeakAfter
1.4716009951365017
AllocRateMBSec
10.20728406072517
HeapSizePeakMB
5.352048000000001
UserAllocated
[ 2.590544, 0, 0, 0.140176, 0 ]
HeapSizeBeforeMB
5.352048000000001
GenSizeBeforeMB
[ 2.621608, 1.491848, 0.977768, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
0.840749769547146
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.985088
PromotedMB
0.889704
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7023.3661
DurationMSec
3.1805999999996857
PauseDurationMSec
3.2213000000001557
SuspendDurationMSec
0.008700000000317232
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
5224.5964
PauseStartRelativeMSec
7023.3408
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6985088
TotalPromoted889704
Depth0
GenerationSize02364784
TotalPromotedSize0889704
GenerationSize13160392
TotalPromotedSize10
GenerationSize2977768
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize4221320
TotalPromotedSize40
FinalizationPromotedSize16264
FinalizationPromotedCount8
PinnedObjectCount2
SinkBlockCount3
GCHandleCount498
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount8
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.49388
RatioPeakAfter
0.8785114804566528
AllocRateMBSec
0.47733447888912517
HeapSizePeakMB
6.136480000000001
UserAllocated
[ 2.49388, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.136480000000001
GenSizeBeforeMB
[ 2.630856, 2.267032, 0.977768, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
0.061618445493999446
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2N
HeapSizeAfterMB
7.555048
PromotedMB
5.027096
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7033.4421
DurationMSec
9.000100000000202
PauseDurationMSec
9.109799999999268
SuspendDurationMSec
0.0819999999994252
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
6.799600000000282
PauseStartRelativeMSec
7033.3473
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize7555048
TotalPromoted5027096
Depth2
GenerationSize01868448
TotalPromotedSize01361128
GenerationSize11361952
TotalPromotedSize12432136
GenerationSize23409904
TotalPromotedSize2973072
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize4653920
TotalPromotedSize40
FinalizationPromotedSize376
FinalizationPromotedCount11
PinnedObjectCount3
SinkBlockCount3
GCHandleCount700
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration2
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.390176
RatioPeakAfter
0.9313370345231426
AllocRateMBSec
351.5171480675188
HeapSizePeakMB
7.036296
UserAllocated
[ 2.390176, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.036296
GenSizeBeforeMB
[ 2.637312, 3.160392, 0.977768, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
57.26048751052539
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
8.096912
PromotedMB
1.240424
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7060.2999
DurationMSec
3.68119999999999
PauseDurationMSec
3.730999999999767
SuspendDurationMSec
0.02959999999984575
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
17.81580000000031
PauseStartRelativeMSec
7060.259
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8096912
TotalPromoted1240424
Depth0
GenerationSize01014656
TotalPromotedSize01240424
GenerationSize12605168
TotalPromotedSize10
GenerationSize23409904
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize4806360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount3
GCHandleCount822
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount544
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.344136
RatioPeakAfter
0.9458667699488399
AllocRateMBSec
131.57624131388766
HeapSizePeakMB
7.658600000000001
UserAllocated
[ 2.344136, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.658600000000001
GenSizeBeforeMB
[ 2.62592, 1.361952, 3.409904, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
17.315796313140485
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
9.12976
PromotedMB
1.530904
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7069.691
DurationMSec
3.9390000000003056
PauseDurationMSec
3.973300000000563
SuspendDurationMSec
0.0078000000003157766
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
5.690599999999904
PauseStartRelativeMSec
7069.6726
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9129760
TotalPromoted1530904
Depth0
GenerationSize0230120
TotalPromotedSize01530904
GenerationSize14142392
TotalPromotedSize10
GenerationSize23409904
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize41086520
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount3
GCHandleCount960
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount175
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.319408
RatioPeakAfter
0.9768580992271428
AllocRateMBSec
407.5858433205707
HeapSizePeakMB
8.918479999999999
UserAllocated
[ 2.319408, 0, 0, 0, 0 ]
HeapSizeBeforeMB
8.918479999999999
GenSizeBeforeMB
[ 2.642584, 2.605168, 3.409904, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
41.114870807855745
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
14.378264
PromotedMB
6.964408
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7106.9397
DurationMSec
6.513500000000022
PauseDurationMSec
6.789499999999862
SuspendDurationMSec
0.16849999999976717
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
33.06700000000001
PauseStartRelativeMSec
7106.7038
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize14378264
TotalPromoted6964408
Depth1
GenerationSize00
TotalPromotedSize03947056
GenerationSize15504088
TotalPromotedSize13017352
GenerationSize26422672
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize42190680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount4
GCHandleCount1460
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration1
Gen0ReductionCount407
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated4584
FreeListConsumed4696
AllocedSinceLastGCMB
10.02088
RatioPeakAfter
1.2681241629726652
AllocRateMBSec
303.04775153476265
HeapSizePeakMB
18.233424000000003
UserAllocated
[ 10.020816, 0, 0, 6.40000000000085E-05, 0 ]
HeapSizeBeforeMB
18.233424000000003
GenSizeBeforeMB
[ 10.420304000000002, 4.142392, 3.409904, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
17.034862569467677
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
18.544232
PromotedMB
1.889912
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7161.6959
DurationMSec
3.9416000000001077
PauseDurationMSec
4.256499999999505
SuspendDurationMSec
0.23689999999987776
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
47.95310000000063
PauseStartRelativeMSec
7161.4075
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize18544232
TotalPromoted1889912
Depth0
GenerationSize02437080
TotalPromotedSize01889912
GenerationSize16948696
TotalPromotedSize10
GenerationSize26422672
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize42474960
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount8
GCHandleCount1545
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount162
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.218015999999999
RatioPeakAfter
1.2210533172794644
AllocRateMBSec
213.0835337027192
HeapSizePeakMB
22.643496
UserAllocated
[ 10.218015999999999, 0, 0, 0, 0 ]
HeapSizeBeforeMB
22.643496
GenSizeBeforeMB
[ 10.455912, 5.504087999999999, 6.422672, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
8.152715209462425
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
17.324288
PromotedMB
1.2968
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7189.2278
DurationMSec
3.2812000000003536
PauseDurationMSec
3.6179000000001906
SuspendDurationMSec
0.2551000000003114
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
23.280299999999443
PauseStartRelativeMSec
7188.9189
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize17324288
TotalPromoted1296800
Depth0
GenerationSize00
TotalPromotedSize01296800
GenerationSize17947472
TotalPromotedSize10
GenerationSize26422672
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize42693320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount10
GCHandleCount1544
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount75
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.232264
RatioPeakAfter
1.3851268231052267
AllocRateMBSec
439.5245765733365
HeapSizePeakMB
23.996336
UserAllocated
[ 10.232264, 0, 0, 0, 0 ]
HeapSizeBeforeMB
23.996336
GenSizeBeforeMB
[ 10.364144, 6.948696, 6.422672, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
13.450342402094712
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
18.3094
PromotedMB
1.28428
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7211.2179
DurationMSec
3.3596000000006825
PauseDurationMSec
3.686200000000099
SuspendDurationMSec
0.24330000000009022
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
18.407899999999245
PauseStartRelativeMSec
7210.918
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize18309400
TotalPromoted1284280
Depth0
GenerationSize00
TotalPromotedSize01284280
GenerationSize18850184
TotalPromotedSize10
GenerationSize26422672
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize42775720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount15
GCHandleCount1544
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount121
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.31904
RatioPeakAfter
1.370160464023944
AllocRateMBSec
560.576708913044
HeapSizePeakMB
25.086816
UserAllocated
[ 10.31904, 0, 0, 0, 0 ]
HeapSizeBeforeMB
25.086816
GenSizeBeforeMB
[ 10.455848000000001, 7.947471999999999, 6.422672, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
16.684092133194873
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
19.274792
PromotedMB
1.272856
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7232.2623
DurationMSec
3.1078999999999724
PauseDurationMSec
3.432699999999386
SuspendDurationMSec
0.23289999999997235
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
17.382000000000517
PauseStartRelativeMSec
7231.961
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize19274792
TotalPromoted1272856
Depth0
GenerationSize00
TotalPromotedSize01272856
GenerationSize19811456
TotalPromotedSize10
GenerationSize26422672
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize42779840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount19
GCHandleCount1545
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount151
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.901536
RatioPeakAfter
1.3255485195378498
AllocRateMBSec
569.6430790472733
HeapSizePeakMB
25.549671999999994
UserAllocated
[ 9.901536, 0, 0, 0, 0 ]
HeapSizeBeforeMB
25.549671999999994
GenSizeBeforeMB
[ 10.015991999999999, 8.850183999999999, 6.422672, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
16.49171018558712
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
23.000584
PromotedMB
10.943336
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
15
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7253.7069
DurationMSec
11.960199999999531
PauseDurationMSec
2.0112000000008265
SuspendDurationMSec
0.4949000000005981
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
8.253899999999703
PauseStartRelativeMSec
7253.4095
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.7645000000002256
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize23000584
TotalPromoted10943336
Depth2
GenerationSize02401408
TotalPromotedSize01264360
GenerationSize111098760
TotalPromotedSize13017352
GenerationSize26422672
TotalPromotedSize26400864
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize42816920
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount16
GCHandleCount1556
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.1665870744847173
AllocRateMBSec
0
HeapSizePeakMB
26.832183999999998
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
16.494951999999998
GenSizeBeforeMB
[ 0, 9.811456, 6.422672, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
18.48439939400333
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
20.586816
PromotedMB
1.26436
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7254.3159
DurationMSec
3.098899999999958
PauseDurationMSec
3.5890000000008513
SuspendDurationMSec
0
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
18.944499999999607
PauseStartRelativeMSec
7254.3159
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize20586816
TotalPromoted1264360
Depth0
GenerationSize00
TotalPromotedSize01264360
GenerationSize111098760
TotalPromotedSize10
GenerationSize26422672
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize42804560
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount21
GCHandleCount1553
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount148
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure0
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.456488
RatioPeakAfter
1.3033673589932508
AllocRateMBSec
551.9537596664054
HeapSizePeakMB
26.832183999999998
UserAllocated
[ 10.195664, 0, 0, 0.260824, 0 ]
HeapSizeBeforeMB
26.832183999999998
GenSizeBeforeMB
[ 10.337232, 9.811456, 6.422672, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
15.927396986712132
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
14.215336
PromotedMB
4.690288
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7278.3449
DurationMSec
4.845099999999547
PauseDurationMSec
5.242599999999584
SuspendDurationMSec
0.3120999999991909
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
12.302400000000489
PauseStartRelativeMSec
7277.9723
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize14215336
TotalPromoted4690288
Depth1
GenerationSize00
TotalPromotedSize0682416
GenerationSize1695192
TotalPromotedSize14007872
GenerationSize210430040
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize42829280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount16
GCHandleCount1552
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration1
Gen0ReductionCount137
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated400
FreeListConsumed400
AllocedSinceLastGCMB
9.114400000000002
RatioPeakAfter
1.9209586041441438
AllocRateMBSec
740.863571335645
HeapSizePeakMB
27.307071999999998
UserAllocated
[ 9.114464000000002, 0, 0, -6.4E-05, 0 ]
HeapSizeBeforeMB
27.307071999999998
GenSizeBeforeMB
[ 9.524816, 11.09876, 6.422672, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
29.88087774294421
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
15.51832
PromotedMB
1.259288
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7301.4147
DurationMSec
2.65729999999985
PauseDurationMSec
2.940400000000409
SuspendDurationMSec
0.23220000000037544
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
17.966199999999844
PauseStartRelativeMSec
7301.1576
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize15518320
TotalPromoted1259288
Depth0
GenerationSize00
TotalPromotedSize01259288
GenerationSize11977576
TotalPromotedSize10
GenerationSize210430040
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize42849880
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount19
GCHandleCount1553
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount4001191
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.257
RatioPeakAfter
1.4029730022322005
AllocRateMBSec
570.9053667442247
HeapSizePeakMB
21.771784
UserAllocated
[ 10.257, 0, 0, 0, 0 ]
HeapSizeBeforeMB
21.771784
GenSizeBeforeMB
[ 10.385728, 0.695192, 10.43004, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
14.064458113707506
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
14.259376
PromotedMB
0.697856
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7350.0177
DurationMSec
1.7790999999997439
PauseDurationMSec
2.2372999999997774
SuspendDurationMSec
0.27440000000024156
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
45.52720000000045
PauseStartRelativeMSec
7349.6003
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize14259376
TotalPromoted697856
Depth1
GenerationSize00
TotalPromotedSize0694368
GenerationSize1707128
TotalPromotedSize13488
GenerationSize210433304
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize42858120
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount27
GCHandleCount1552
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps11
CondemnedGeneration1
Gen0ReductionCount126
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated120
FreeListConsumed168
AllocedSinceLastGCMB
25.958784
RatioPeakAfter
2.724662285362277
AllocRateMBSec
570.1818693001051
HeapSizePeakMB
38.851984
UserAllocated
[ 25.958720000000003, 0, 0, 6.4E-05, 0 ]
HeapSizeBeforeMB
38.851984
GenSizeBeforeMB
[ 26.183544, 1.977576, 10.43004, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
4.6840226528065125
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
15.538704
PromotedMB
1.240472
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7401.5924
DurationMSec
1.5450999999993655
PauseDurationMSec
1.970299999999952
SuspendDurationMSec
0.2800999999999476
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
49.39710000000014
PauseStartRelativeMSec
7401.195
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize15538704
TotalPromoted1240472
Depth0
GenerationSize00
TotalPromotedSize01240472
GenerationSize11969976
TotalPromotedSize10
GenerationSize210433304
TotalPromotedSize20
GenerationSize3260824
TotalPromotedSize30
GenerationSize42874600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount31
GCHandleCount1553
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps11
CondemnedGeneration0
Gen0ReductionCount36
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
28.11468
RatioPeakAfter
2.558415682543409
AllocRateMBSec
569.1564889436813
HeapSizePeakMB
39.754464
UserAllocated
[ 28.11468, 0, 0, 0, 0 ]
HeapSizeBeforeMB
39.754464
GenSizeBeforeMB
[ 28.353208000000002, 0.7071280000000001, 10.433304, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
3.8357012424221364
(1044 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.6513147556391363
MeanSizeAfterMB
22.981924541353372
MeanSizePeakMB
59.756726503759445
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1064
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
9.109799999999268
TotalPauseTimeMSec
1756.998900000041
MaxSuspendDurationMSec
7.609299999996438
MaxSizePeakMB
68.09929600000001
MaxAllocRateMBSec
1955.910241127818
TotalAllocatedMB
43449.609968
TotalCpuMSec
0
TotalPromotedMB
1161.383048
TotalSizeAfterMB
24452.76771199999
TotalSizePeakMB
63581.15700000005
FinalizedObjects(empty)
ProcessDuration
36620.9151
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.6371177681473836
MeanSizeAfterMB
24.04514530010833
MeanSizePeakMB
60.56470555146264
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
923
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
8.852099999996426
TotalPauseTimeMSec
1511.059700000035
MaxSuspendDurationMSec
7.609299999996438
MaxSizePeakMB
68.09929600000001
MaxAllocRateMBSec
1804.8494501073747
TotalAllocatedMB
37895.60736800001
TotalCpuMSec
0
TotalPromotedMB
1025.4868399999996
TotalSizeAfterMB
22193.66911199999
TotalSizePeakMB
55901.223224000016
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.6895355072463931
MeanSizeAfterMB
15.928405391304352
MeanSizePeakMB
54.96241066666666
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
138
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
8.436699999998382
TotalPauseTimeMSec
233.15590000000225
MaxSuspendDurationMSec
7.207200000000739
MaxSizePeakMB
59.022527999999994
MaxAllocRateMBSec
1955.910241127818
TotalAllocatedMB
5551.612423999999
TotalCpuMSec
0
TotalPromotedMB
105.17954399999999
TotalSizeAfterMB
2198.1199440000005
TotalSizePeakMB
7584.812672
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
4.261100000001231
MeanSizeAfterMB
20.326218666666666
MeanSizePeakMB
31.70703466666666
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
3
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
9.109799999999268
TotalPauseTimeMSec
12.783300000003692
MaxSuspendDurationMSec
0.4949000000005981
MaxSizePeakMB
61.25262399999999
MaxAllocRateMBSec
351.5171480675188
TotalAllocatedMB
2.390176
TotalCpuMSec
0
TotalPromotedMB
30.716664
TotalSizeAfterMB
60.978656
TotalSizePeakMB
95.12110399999999
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2N
HeapSizeAfterMB
7.555048
PromotedMB
5.027096
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7033.4421
DurationMSec
9.000100000000202
PauseDurationMSec
9.109799999999268
SuspendDurationMSec
0.0819999999994252
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
6.799600000000282
PauseStartRelativeMSec
7033.3473
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize7555048
TotalPromoted5027096
Depth2
GenerationSize01868448
TotalPromotedSize01361128
GenerationSize11361952
TotalPromotedSize12432136
GenerationSize23409904
TotalPromotedSize2973072
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize4653920
TotalPromotedSize40
FinalizationPromotedSize376
FinalizationPromotedCount11
PinnedObjectCount3
SinkBlockCount3
GCHandleCount700
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration2
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.390176
RatioPeakAfter
0.9313370345231426
AllocRateMBSec
351.5171480675188
HeapSizePeakMB
7.036296
UserAllocated
[ 2.390176, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.036296
GenSizeBeforeMB
[ 2.637312, 3.160392, 0.977768, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
57.26048751052539
BGCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
23.000584
PromotedMB
10.943336
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
15
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7253.7069
DurationMSec
11.960199999999531
PauseDurationMSec
2.0112000000008265
SuspendDurationMSec
0.4949000000005981
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
8.253899999999703
PauseStartRelativeMSec
7253.4095
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.7645000000002256
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize23000584
TotalPromoted10943336
Depth2
GenerationSize02401408
TotalPromotedSize01264360
GenerationSize111098760
TotalPromotedSize13017352
GenerationSize26422672
TotalPromotedSize26400864
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize42816920
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount16
GCHandleCount1556
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.1665870744847173
AllocRateMBSec
0
HeapSizePeakMB
26.832183999999998
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
16.494951999999998
GenSizeBeforeMB
[ 0, 9.811456, 6.422672, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
18.48439939400333
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
30.423024
PromotedMB
14.746232
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
536
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
22357.9781
DurationMSec
11.830799999999726
PauseDurationMSec
1.6623000000035972
SuspendDurationMSec
0.4830000000038126
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
9.498200000001816
PauseStartRelativeMSec
22357.5713
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.4574000000029628
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize30423024
TotalPromoted14746232
Depth2
GenerationSize06411560
TotalPromotedSize01104376
GenerationSize13227872
TotalPromotedSize15294440
GenerationSize216090192
TotalPromotedSize28086656
GenerationSize3260824
TotalPromotedSize3260760
GenerationSize44432576
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount43
GCHandleCount1672
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
2.0133640889873403
AllocRateMBSec
0
HeapSizePeakMB
61.25262399999999
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
20.777936
GenSizeBeforeMB
[ 1.199024, 3.227872, 16.090216, 0.260824, 0 ]
PauseTimePercentageSinceLastGC
9.210578270918491
GCThreadIDsToHeapNumbers(empty)
DurationMSec
39839.124
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="154381"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesPlatform_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 1:42:16 PM"\\r\\n SessionEndTime="8/21/2023 1:43:00 PM"\\r\\n SessionDuration="00:0...
Events
[ <Event MSec= "0.0000" PID= "796" PName="PerfView" TID="7116" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 1:42:57 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="411" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 1:42:16 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID= "796" PName="PerfView" TID="7116" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "10.2014" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID= "796" PName="PerfView" TID="7116" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "10.1706" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "10.2014" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "10.2206" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "10.2206" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", - "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337154431602.6
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="796" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="156.1215" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmp8D03.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="43812.9783" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", - "
Count108
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="7116" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337154431602.6" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337154431602.6" /> ... (more) ]
Count1441
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", - "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="101" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1254" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="157" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="28" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", - " ... (more) ]
Count78
(values)
indexvalue
0\r\n", - "
1\r\n", - "
2\r\n", - "
3\r\n", - "
4\r\n", - "
5\r\n", - "
6\r\n", - "
7\r\n", - "
8\r\n", - "
9\r\n", - "
10\r\n", - "
11\r\n", - "
12\r\n", - "
13\r\n", - "
14\r\n", - "
15\r\n", - "
16\r\n", - "
17\r\n", - "
18\r\n", - "
19\r\n", - "
... (more)
MaxEventIndex154381
EventCount
154381
Size
28786301
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesPlatform_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", - "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", - "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", - "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", - "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", - " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", - " at lambda_method760(Closure, TraceLog)\r\n", - " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 13:42:16Z
SessionEndTime2023-08-21 13:43:00Z
SessionEndTimeRelativeMSec
43812.9783
SessionDuration00:00:43.8129783
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [99, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [101, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [102, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesPlatform_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
PlatformBenchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\cpfgawzs.fwo\\src\\BenchmarksApps\\TechEmpower\\PlatformBenchmarks\\published\\PlatformBenchmarks.exe"  
NumberOfHeapCountSwitches
7
Benchmark
FortunesPlatform
Id
datas_3 | FortunesPlatform
TotalSuspensionTimeMSec
250.89509999998688
PercentPauseTimeInGC
4.797801734889036
PercentTimeInGC
4.112687506271666
MeanHeapSizeBeforeMB
59.756726503759445
MaxHeapSizeMB
68.09929600000001
TotalAllocationsMB
43449.609968
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\FortunesPlatform_Windows.gc.etl.zip
ProcessName
PlatformBenchmarks
datas_3 | Fortunes
Submission#4+LoadInfo
WorkingSetMB
162
PrivateMemoryMB
138
Latency50thMS
0.73
Latency75thMS
0.99
Latency90thMS
1.63
Latency99thMS
11.83
MeanLatencyMS
1.22
ProcessId
10696
RequestsPerMSec
306.505
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
Benchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\xmtfecyd.cd2\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios DbFortunesRaw --urls http://10.0.0.104:5000 --server Kestrel --kestrelTransport Sockets --protocol 
ProcessID
10696
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
3.690744
PromotedMB
1.315248
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5897.8015
DurationMSec
5.692400000000816
PauseDurationMSec
5.92450000000008
SuspendDurationMSec
0.008799999999610009
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
5897.6233
PauseStartRelativeMSec
5897.6233
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3690744
TotalPromoted1315248
Depth0
GenerationSize02061824
TotalPromotedSize01315248
GenerationSize11324040
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4196600
TotalPromotedSize40
FinalizationPromotedSize41222
FinalizationPromotedCount26
PinnedObjectCount4
SinkBlockCount4
GCHandleCount549
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
0.7397294420853899
AllocRateMBSec
0
HeapSizePeakMB
2.7301520000000004
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.7301520000000004
GenSizeBeforeMB
[ 2.621872, 0, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
0.10035490861952671
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
4.791296
PromotedMB
2.860968
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
5916.8943
DurationMSec
7.170200000000477
PauseDurationMSec
7.213200000000143
SuspendDurationMSec
0.007799999999406282
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
13.367299999999886
PauseStartRelativeMSec
5916.8621
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4791296
TotalPromoted2860968
Depth1
GenerationSize01570424
TotalPromotedSize01649240
GenerationSize11658944
TotalPromotedSize11211728
GenerationSize21211728
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4241920
TotalPromotedSize40
FinalizationPromotedSize736
FinalizationPromotedCount26
PinnedObjectCount2
SinkBlockCount4
GCHandleCount868
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.450376
RatioPeakAfter
0.8479409328916435
AllocRateMBSec
183.31121468060272
HeapSizePeakMB
4.062736
UserAllocated
[ 2.450376, 0, 0, 0, 0 ]
HeapSizeBeforeMB
4.062736
GenSizeBeforeMB
[ 2.630416, 1.32404, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
35.04871115862167
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.615992
PromotedMB
1.346552
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5934.3344
DurationMSec
6.700300000000425
PauseDurationMSec
6.782799999999952
SuspendDurationMSec
0.054300000000694126
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
10.200599999999213
PauseStartRelativeMSec
5934.266
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4615992
TotalPromoted1346552
Depth0
GenerationSize0584
TotalPromotedSize01346552
GenerationSize13024640
TotalPromotedSize10
GenerationSize21211728
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4270760
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount4
GCHandleCount982
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount350
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.298056
RatioPeakAfter
1.2155861621943884
AllocRateMBSec
225.2863557045838
HeapSizePeakMB
5.611136
UserAllocated
[ 2.298056, 0, 0, 0, 0 ]
HeapSizeBeforeMB
5.611136
GenSizeBeforeMB
[ 2.632184, 1.658944, 1.211728, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
39.93782163760075
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
7.892096
PromotedMB
2.962248
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6011.2522
DurationMSec
7.013799999999719
PauseDurationMSec
7.20220000000063
SuspendDurationMSec
0.05230000000028667
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
70.0663999999997
PauseStartRelativeMSec
6011.1019
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize7892096
TotalPromoted2962248
Depth1
GenerationSize02358104
TotalPromotedSize01050648
GenerationSize11961720
TotalPromotedSize11911600
GenerationSize23123192
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4340800
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount4
GCHandleCount1130
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration1
Gen0ReductionCount396
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
14.089935999999996
RatioPeakAfter
2.4792582350746883
AllocRateMBSec
201.09404793167704
HeapSizePeakMB
19.566544000000007
UserAllocated
[ 14.089903999999997, 0, 0, 3.200000000000425E-05, 0 ]
HeapSizeBeforeMB
19.566544000000007
GenSizeBeforeMB
[ 15.221896000000005, 3.02464, 1.211728, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
9.320991968277669
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
10.447664
PromotedMB
6.340992
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
5
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
6067.537
DurationMSec
6.957599999999729
PauseDurationMSec
0.6243999999996959
SuspendDurationMSec
0.1993000000002212
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
3.467399999999543
PauseStartRelativeMSec
6067.2698
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0.4317000000000917
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10447664
TotalPromoted6340992
Depth2
GenerationSize03851800
TotalPromotedSize01199048
GenerationSize12990632
TotalPromotedSize11911600
GenerationSize23123192
TotalPromotedSize23122096
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize4373760
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount4
GCHandleCount1164
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.9592483066071038
AllocRateMBSec
0
HeapSizePeakMB
20.469568
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.551296
GenSizeBeforeMB
[ 2.358104, 1.96172, 3.123192, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
6.559295447511716
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
9.678712
PromotedMB
1.199048
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6068.4694
DurationMSec
2.5583999999998923
PauseDurationMSec
3.063799999999901
SuspendDurationMSec
0
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
50.20229999999992
PauseStartRelativeMSec
6068.4694
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9678712
TotalPromoted1199048
Depth0
GenerationSize03086968
TotalPromotedSize01199048
GenerationSize12990632
TotalPromotedSize10
GenerationSize23123192
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4369640
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount4
GCHandleCount1163
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration0
Gen0ReductionCount90
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure0
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
14.055040000000002
RatioPeakAfter
2.114906198262744
AllocRateMBSec
279.9680492726433
HeapSizePeakMB
20.469568
UserAllocated
[ 13.946760000000001, 0, 0, 0.10828, 0 ]
HeapSizeBeforeMB
20.469568
GenSizeBeforeMB
[ 15.276375999999999, 1.96172, 3.123192, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.7518759586301815
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
5.962728
PromotedMB
1.135272
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6089.5202
DurationMSec
2.3770999999997002
PauseDurationMSec
2.9439000000002125
SuspendDurationMSec
0.13069999999970605
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
14.48070000000007
PauseStartRelativeMSec
6088.977
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5962728
TotalPromoted1135272
Depth1
GenerationSize0584
TotalPromotedSize0427184
GenerationSize11397640
TotalPromotedSize1708088
GenerationSize23831144
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4625080
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount5
GCHandleCount1162
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration1
Gen0ReductionCount47
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.484792000000002
RatioPeakAfter
3.495350450330788
AllocRateMBSec
862.167712886804
HeapSizePeakMB
20.841824
UserAllocated
[ 12.484824000000001, 0, 0, -3.2E-05, 0 ]
HeapSizeBeforeMB
20.841824
GenSizeBeforeMB
[ 14.61972, 2.990632, 3.123192, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
16.895079370546036
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
6.145584
PromotedMB
0.523184
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6109.5234
DurationMSec
2.1544999999996435
PauseDurationMSec
2.4259000000001834
SuspendDurationMSec
0.1021999999993568
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
17.39140000000043
PauseStartRelativeMSec
6109.2897
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6145584
TotalPromoted523184
Depth1
GenerationSize0584
TotalPromotedSize0497224
GenerationSize11493304
TotalPromotedSize125960
GenerationSize23848296
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4695120
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount5
GCHandleCount1162
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps9
CondemnedGeneration1
Gen0ReductionCount108
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated360
FreeListConsumed360
AllocedSinceLastGCMB
19.2526
RatioPeakAfter
4.360548973051217
AllocRateMBSec
1107.01841139871
HeapSizePeakMB
26.798119999999994
UserAllocated
[ 19.252568, 0, 0, 3.2E-05, 0 ]
HeapSizeBeforeMB
26.798119999999994
GenSizeBeforeMB
[ 21.461055999999996, 1.39764, 3.8311439999999997, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
12.241324499301662
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
8.72812
PromotedMB
0.443544
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6129.7772
DurationMSec
1.4473999999991065
PauseDurationMSec
1.6988000000001193
SuspendDurationMSec
0.11710000000039145
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
17.870699999999488
PauseStartRelativeMSec
6129.5502
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8728120
TotalPromoted443544
Depth1
GenerationSize02589880
TotalPromotedSize0432496
GenerationSize11463424
TotalPromotedSize111048
GenerationSize23850816
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4715720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount5
GCHandleCount1162
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps9
CondemnedGeneration1
Gen0ReductionCount4115
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated80
FreeListConsumed80
AllocedSinceLastGCMB
20.238432000000003
RatioPeakAfter
3.2517096465218174
AllocRateMBSec
1132.4924037670928
HeapSizePeakMB
28.381312000000005
UserAllocated
[ 20.238432000000003, 0, 0, 0, 0 ]
HeapSizeBeforeMB
28.381312000000005
GenSizeBeforeMB
[ 22.931432000000004, 1.493304, 3.848296, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
8.680855412760435
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
13.956728
PromotedMB
0.513688
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6149.4498
DurationMSec
1.5018999999992957
PauseDurationMSec
1.7343000000000757
SuspendDurationMSec
0.10130000000026484
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
18.013199999999415
PauseStartRelativeMSec
6149.2391
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13956728
TotalPromoted513688
Depth1
GenerationSize07746672
TotalPromotedSize0505040
GenerationSize11522648
TotalPromotedSize18648
GenerationSize23859288
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4719840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount5
GCHandleCount1163
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps9
CondemnedGeneration1
Gen0ReductionCount73
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated40
FreeListConsumed40
AllocedSinceLastGCMB
20.754272
RatioPeakAfter
2.062697216711539
AllocRateMBSec
1152.1701863078563
HeapSizePeakMB
28.788504000000003
UserAllocated
[ 20.754272, 0, 0, 0, 0 ]
HeapSizeBeforeMB
28.788504000000003
GenSizeBeforeMB
[ 23.365984, 1.4634239999999998, 3.8508160000000005, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
8.782377516141894
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
6.208664
PromotedMB
0.452
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6168.9187
DurationMSec
1.4039999999995416
PauseDurationMSec
1.6909999999998035
SuspendDurationMSec
0.14259999999922002
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
17.700700000000325
PauseStartRelativeMSec
6168.6535
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6208664
TotalPromoted452000
Depth1
GenerationSize0584
TotalPromotedSize0451824
GenerationSize11483592
TotalPromotedSize1176
GenerationSize23859288
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4756920
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount5
GCHandleCount1162
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps9
CondemnedGeneration1
Gen0ReductionCount75
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated40
FreeListConsumed40
AllocedSinceLastGCMB
20.37192
RatioPeakAfter
4.599261934612664
AllocRateMBSec
1150.9104159722285
HeapSizePeakMB
28.555272000000002
UserAllocated
[ 20.37192, 0, 0, 0, 0 ]
HeapSizeBeforeMB
28.555272000000002
GenSizeBeforeMB
[ 23.065056000000002, 1.5226479999999998, 3.8592880000000007, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
8.720225663556018
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
11.363088
PromotedMB
0.493184
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6188.3133
DurationMSec
1.5138000000006286
PauseDurationMSec
1.8549999999995634
SuspendDurationMSec
0.1999999999998181
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
17.671299999999974
PauseStartRelativeMSec
6187.9951
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11363088
TotalPromoted493184
Depth1
GenerationSize05128048
TotalPromotedSize0490768
GenerationSize11500112
TotalPromotedSize12416
GenerationSize23861488
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4765160
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount6
GCHandleCount1163
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps9
CondemnedGeneration1
Gen0ReductionCount71
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated80
FreeListConsumed168
AllocedSinceLastGCMB
20.364151999999997
RatioPeakAfter
2.5013306242106013
AllocRateMBSec
1152.3856196205163
HeapSizePeakMB
28.422839999999994
UserAllocated
[ 20.364151999999997, 0, 0, 0, 0 ]
HeapSizeBeforeMB
28.422839999999994
GenSizeBeforeMB
[ 22.971679999999996, 1.4835919999999998, 3.8592880000000007, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
9.500007681944902
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
6.253248
PromotedMB
0.509496
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6207.7126
DurationMSec
1.4457000000002154
PauseDurationMSec
1.6960000000008222
SuspendDurationMSec
0.10870000000068103
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
17.656999999999243
PauseStartRelativeMSec
6207.4854
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6253248
TotalPromoted509496
Depth1
GenerationSize0584
TotalPromotedSize0508320
GenerationSize11516776
TotalPromotedSize11176
GenerationSize23862448
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4765160
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount5
GCHandleCount1162
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps9
CondemnedGeneration1
Gen0ReductionCount76
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated80
FreeListConsumed80
AllocedSinceLastGCMB
20.150976000000004
RatioPeakAfter
4.52352953217272
AllocRateMBSec
1141.2457382341772
HeapSizePeakMB
28.286752
UserAllocated
[ 20.150976000000004, 0, 0, 0, 0 ]
HeapSizeBeforeMB
28.286752
GenSizeBeforeMB
[ 22.816872, 1.500112, 3.8614879999999996, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
8.763499199094799
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
10.841184
PromotedMB
0.505704
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6236.5749
DurationMSec
1.4329999999999927
PauseDurationMSec
1.796400000000176
SuspendDurationMSec
0.14719999999942956
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
27.09230000000025
PauseStartRelativeMSec
6236.2519
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10841184
TotalPromoted505704
Depth1
GenerationSize04543000
TotalPromotedSize0503648
GenerationSize11560376
TotalPromotedSize12056
GenerationSize23864368
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4765160
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount6
GCHandleCount1162
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount73
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
30.689560000000007
RatioPeakAfter
3.5456754538987627
AllocRateMBSec
1132.7779479778285
HeapSizePeakMB
38.43932
UserAllocated
[ 30.689560000000007, 0, 0, 0, 0 ]
HeapSizeBeforeMB
38.43932
GenSizeBeforeMB
[ 32.951816, 1.516776, 3.8624479999999997, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
6.218348350739734
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
13.94748
PromotedMB
0.502544
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6266.4527
DurationMSec
1.3468000000002576
PauseDurationMSec
1.6496999999999389
SuspendDurationMSec
0.0783000000001266
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
28.162600000000566
PauseStartRelativeMSec
6266.1719
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13947480
TotalPromoted502544
Depth1
GenerationSize07676320
TotalPromotedSize0501448
GenerationSize11532392
TotalPromotedSize11096
GenerationSize23865328
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4765160
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount6
GCHandleCount1163
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount48
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
33.004584
RatioPeakAfter
2.9198616524275356
AllocRateMBSec
1171.9295803654256
HeapSizePeakMB
40.724712000000004
UserAllocated
[ 33.004584, 0, 0, 0, 0 ]
HeapSizeBeforeMB
40.724712000000004
GenSizeBeforeMB
[ 35.191688000000006, 1.5603759999999998, 3.864368, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.533622028491297
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
16.487504
PromotedMB
0.51864
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6297.5541
DurationMSec
1.2790999999997439
PauseDurationMSec
1.6040000000002692
SuspendDurationMSec
0.09020000000055006
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
29.452000000000226
PauseStartRelativeMSec
6297.2526
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize16487504
TotalPromoted518640
Depth1
GenerationSize010197712
TotalPromotedSize0514664
GenerationSize11543064
TotalPromotedSize13976
GenerationSize23869168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4769280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount6
SinkBlockCount7
GCHandleCount1160
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount44
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
33.41884
RatioPeakAfter
2.492494194391097
AllocRateMBSec
1134.6883063968405
HeapSizePeakMB
41.09500799999999
UserAllocated
[ 33.41884, 0, 0, 0, 0 ]
HeapSizeBeforeMB
41.09500799999999
GenSizeBeforeMB
[ 35.58900799999999, 1.5323920000000004, 3.865328, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.1648634724376725
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
13.841664
PromotedMB
0.49588
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6327.7261
DurationMSec
1.3197000000000116
PauseDurationMSec
1.607600000000275
SuspendDurationMSec
0.08250000000043656
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
28.629399999999805
PauseStartRelativeMSec
6327.464
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13841664
TotalPromoted495880
Depth1
GenerationSize07550720
TotalPromotedSize0494744
GenerationSize11539096
TotalPromotedSize11136
GenerationSize23870168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4773400
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount8
GCHandleCount1162
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount40
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
33.314392
RatioPeakAfter
2.9595753805322826
AllocRateMBSec
1163.6426889840593
HeapSizePeakMB
40.965447999999995
UserAllocated
[ 33.314392, 0, 0, 0, 0 ]
HeapSizeBeforeMB
40.965447999999995
GenSizeBeforeMB
[ 35.44493599999999, 1.543064, 3.869168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.316665013064361
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
8.77516
PromotedMB
0.464872
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6357.5348
DurationMSec
1.3623999999999796
PauseDurationMSec
1.7020999999995183
SuspendDurationMSec
0.15139999999973952
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
28.170100000000275
PauseStartRelativeMSec
6357.2173
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8775160
TotalPromoted464872
Depth1
GenerationSize02491240
TotalPromotedSize0464696
GenerationSize11532072
TotalPromotedSize1176
GenerationSize23870168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4773400
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount8
GCHandleCount1161
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount43
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated40
FreeListConsumed40
AllocedSinceLastGCMB
32.80828
RatioPeakAfter
4.6105014609420225
AllocRateMBSec
1164.6490427793897
HeapSizePeakMB
40.457888
UserAllocated
[ 32.80828, 0, 0, 0, 0 ]
HeapSizeBeforeMB
40.457888
GenSizeBeforeMB
[ 34.940343999999996, 1.5390959999999998, 3.870168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.697939890599052
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
13.926424
PromotedMB
0.467584
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6387.8122
DurationMSec
1.4057999999995445
PauseDurationMSec
1.7444000000004962
SuspendDurationMSec
0.145900000000438
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
28.599099999999453
PauseStartRelativeMSec
6387.4977
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13926424
TotalPromoted467584
Depth1
GenerationSize07633320
TotalPromotedSize0467448
GenerationSize11541256
TotalPromotedSize1136
GenerationSize23870168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4773400
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount8
GCHandleCount1160
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount44
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
33.39914400000001
RatioPeakAfter
2.957813721598596
AllocRateMBSec
1167.8389879402025
HeapSizePeakMB
41.191768
UserAllocated
[ 33.39914400000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
41.191768
GenSizeBeforeMB
[ 35.681248000000004, 1.5320719999999997, 3.870168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.7488424209484705
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
16.572944
PromotedMB
0.421424
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6425.7845
DurationMSec
1.2080999999998312
PauseDurationMSec
1.4885999999996784
SuspendDurationMSec
0.08839999999963766
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
36.3095000000003
PauseStartRelativeMSec
6425.5288
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize16572944
TotalPromoted421424
Depth1
GenerationSize010324296
TotalPromotedSize0421288
GenerationSize11467960
TotalPromotedSize1136
GenerationSize23870168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4802240
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount6
SinkBlockCount8
GCHandleCount1159
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps14
CondemnedGeneration1
Gen0ReductionCount45
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
33.376535999999994
RatioPeakAfter
2.4875874799311455
AllocRateMBSec
919.2232335889979
HeapSizePeakMB
41.226648
UserAllocated
[ 33.376535999999994, 0, 0, 0, 0 ]
HeapSizeBeforeMB
41.226648
GenSizeBeforeMB
[ 35.706944, 1.5412560000000002, 3.870168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.938293194630628
(1033 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.4254956315290084
MeanSizeAfterMB
11.082241694207012
MeanSizePeakMB
71.19659317758773
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1053
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
7.213200000000143
TotalPauseTimeMSec
1501.0469000000458
MaxSuspendDurationMSec
0.2776000000012573
MaxSizePeakMB
83.083696
MaxAllocRateMBSec
2932.1698229106787
TotalAllocatedMB
66184.09164800002
TotalCpuMSec
0
TotalPromotedMB
734.3277680000015
TotalSizeAfterMB
11669.600503999984
TotalSizePeakMB
74970.01261599988
FinalizedObjects(empty)
ProcessDuration
30282.400200000004
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.3953908108108752
MeanSizeAfterMB
11.606588810810813
MeanSizePeakMB
74.27183382702694
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
740
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
6.782799999999952
TotalPauseTimeMSec
1032.5892000000476
MaxSuspendDurationMSec
0.2776000000012573
MaxSizePeakMB
82.66908799999999
MaxAllocRateMBSec
2932.1698229106787
TotalAllocatedMB
48886.286984
TotalCpuMSec
0
TotalPromotedMB
585.1218560000007
TotalSizeAfterMB
8588.875720000002
TotalSizePeakMB
54961.15703199993
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.4994657051282
MeanSizeAfterMB
9.840631794871785
MeanSizePeakMB
64.06533979487179
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
312
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
7.213200000000143
TotalPauseTimeMSec
467.8332999999984
MaxSuspendDurationMSec
0.269800000000032
MaxSizePeakMB
83.083696
MaxAllocRateMBSec
2915.90365308839
TotalAllocatedMB
17297.80466400001
TotalCpuMSec
0
TotalPromotedMB
142.8649199999999
TotalSizeAfterMB
3070.2771199999966
TotalSizePeakMB
19988.386015999997
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
0.6243999999996959
MeanSizeAfterMB
10.447664
MeanSizePeakMB
20.469568
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
0.6243999999996959
TotalPauseTimeMSec
0.6243999999996959
MaxSuspendDurationMSec
0.1993000000002212
MaxSizePeakMB
20.469568
MaxAllocRateMBSec
0
TotalAllocatedMB
0
TotalCpuMSec
0
TotalPromotedMB
6.340992
TotalSizeAfterMB
10.447664
TotalSizePeakMB
20.469568
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking(empty)
BGCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
10.447664
PromotedMB
6.340992
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
5
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
6067.537
DurationMSec
6.957599999999729
PauseDurationMSec
0.6243999999996959
SuspendDurationMSec
0.1993000000002212
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
3.467399999999543
PauseStartRelativeMSec
6067.2698
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0.4317000000000917
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10447664
TotalPromoted6340992
Depth2
GenerationSize03851800
TotalPromotedSize01199048
GenerationSize12990632
TotalPromotedSize11911600
GenerationSize23123192
TotalPromotedSize23122096
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize4373760
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount3
PinnedObjectCount0
SinkBlockCount4
GCHandleCount1164
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.9592483066071038
AllocRateMBSec
0
HeapSizePeakMB
20.469568
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.551296
GenSizeBeforeMB
[ 2.358104, 1.96172, 3.123192, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
6.559295447511716
GCThreadIDsToHeapNumbers(empty)
DurationMSec
37755.0548
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="230725"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\Fortunes_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 12:34:20 PM"\\r\\n SessionEndTime="8/21/2023 12:35:02 PM"\\r\\n SessionDuration="00:00:41.7...
Events
[ <Event MSec= "0.0000" PID="7416" PName="PerfView" TID="11140" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 12:34:59 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="600" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 12:34:20 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="7416" PName="PerfView" TID="11140" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "4.6909" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="7416" PName="PerfView" TID="11140" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "4.6693" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "4.6909" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "4.7108" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "4.7108" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", - "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337158507442.5
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="7416" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="156.4606" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmp5B42.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="41788.8396" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", - "
Count107
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="11140" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337158507442.5" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337158507442.5" /> ... (more) ]
Count1370
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", - "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="100" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1191" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="147" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="28" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", - " ... (more) ]
Count78
(values)
indexvalue
0\r\n", - "
1\r\n", - "
2\r\n", - "
3\r\n", - "
4\r\n", - "
5\r\n", - "
6\r\n", - "
7\r\n", - "
8\r\n", - "
9\r\n", - "
10\r\n", - "
11\r\n", - "
12\r\n", - "
13\r\n", - "
14\r\n", - "
15\r\n", - "
16\r\n", - "
17\r\n", - "
18\r\n", - "
19\r\n", - "
... (more)
MaxEventIndex230725
EventCount
230725
Size
42699286
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\Fortunes_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", - "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", - "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", - "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", - "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", - " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", - " at lambda_method760(Closure, TraceLog)\r\n", - " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 12:34:20Z
SessionEndTime2023-08-21 12:35:02Z
SessionEndTimeRelativeMSec
41788.8396
SessionDuration00:00:41.7888396
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [98, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [100, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [101, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\Fortunes_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
Benchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\xmtfecyd.cd2\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios DbFortunesRaw --urls http://10.0.0.104:5000 --server Kestrel --kestrelTransport Sockets --protocol 
NumberOfHeapCountSwitches
7
Benchmark
Fortunes
Id
datas_3 | Fortunes
TotalSuspensionTimeMSec
95.9111000000612
PercentPauseTimeInGC
4.956829346704313
PercentTimeInGC
4.640107094285031
MeanHeapSizeBeforeMB
71.19659317758773
MaxHeapSizeMB
83.083696
TotalAllocationsMB
66184.09164800002
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\Fortunes_Windows.gc.etl.zip
ProcessName
Benchmarks
datas_3 | JsonCrossgen2
Submission#4+LoadInfo
WorkingSetMB
NaN
PrivateMemoryMB
NaN
Latency50thMS
NaN
Latency75thMS
NaN
Latency90thMS
NaN
Latency99thMS
NaN
MeanLatencyMS
NaN
ProcessId
0
RequestsPerMSec
NaN
Run
datas_3
Data
<null>
Data2
<null>
CommandLine
<null>
NumberOfHeapCountSwitches
0
Benchmark
JsonCrossgen2
Id
datas_3 | JsonCrossgen2
TotalSuspensionTimeMSec
NaN
PercentPauseTimeInGC
NaN
PercentTimeInGC
NaN
MeanHeapSizeBeforeMB
NaN
MaxHeapSizeMB
NaN
TotalAllocationsMB
NaN
TracePath
<null>
ProcessName
<null>
datas_3 | JsonHttpsHttpSys
Submission#4+LoadInfo
WorkingSetMB
115
PrivateMemoryMB
98
Latency50thMS
0.56
Latency75thMS
0.76
Latency90thMS
1.03
Latency99thMS
2.25
MeanLatencyMS
0.66
ProcessId
9012
RequestsPerMSec
419.935
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
Benchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\0qvgxxuw.wqo\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios json --urls https://10.0.0.104:5000 --server HttpSys --kestrelTransport Sockets --protocol https 
ProcessID
9012
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.542688
PromotedMB
1.087648
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5141.1261
DurationMSec
4.509499999999207
PauseDurationMSec
4.840099999999438
SuspendDurationMSec
0.07729999999992287
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
5140.8671
PauseStartRelativeMSec
5140.8671
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4542688
TotalPromoted1087648
Depth0
GenerationSize02614720
TotalPromotedSize01087648
GenerationSize11083368
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4736320
TotalPromotedSize40
FinalizationPromotedSize30034
FinalizationPromotedCount20
PinnedObjectCount4
SinkBlockCount3
GCHandleCount607
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
0.6036496453201277
AllocRateMBSec
0
HeapSizePeakMB
2.742192
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.742192
GenSizeBeforeMB
[ 2.633912, 0, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
0.09406092907889198
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
5.471024
PromotedMB
1.3866
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
5149.9121
DurationMSec
3.803100000000086
PauseDurationMSec
3.9286999999994805
SuspendDurationMSec
0.06629999999950087
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
4.181800000000294
PauseStartRelativeMSec
5149.8184
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5471024
TotalPromoted1386600
Depth1
GenerationSize00
TotalPromotedSize0439392
GenerationSize13716008
TotalPromotedSize1947208
GenerationSize2881576
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4765160
TotalPromotedSize40
FinalizationPromotedSize1256
FinalizationPromotedCount21
PinnedObjectCount30
SinkBlockCount5
GCHandleCount630
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.372392
RatioPeakAfter
0.7001424230637628
AllocRateMBSec
567.3135970155994
HeapSizePeakMB
3.830496
UserAllocated
[ 2.372392, 0, 0, 0, 0 ]
HeapSizeBeforeMB
3.830496
GenSizeBeforeMB
[ 2.638848, 1.083368, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
48.43967696195783
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2N
HeapSizeAfterMB
5.140528
PromotedMB
1.658048
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
5163.0969
DurationMSec
5.974100000000362
PauseDurationMSec
6.148000000000138
SuspendDurationMSec
0.10969999999997526
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
9.236700000000383
PauseStartRelativeMSec
5162.9529
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5140528
TotalPromoted1658048
Depth2
GenerationSize02588760
TotalPromotedSize0256568
GenerationSize1258792
TotalPromotedSize1412944
GenerationSize21419536
TotalPromotedSize2880288
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize4765160
TotalPromotedSize40
FinalizationPromotedSize608
FinalizationPromotedCount4
PinnedObjectCount13
SinkBlockCount5
GCHandleCount631
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration2
Gen0ReductionCount27475
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.496624
RatioPeakAfter
1.4254068842733665
AllocRateMBSec
270.293936146015
HeapSizePeakMB
7.327344
UserAllocated
[ 2.496624, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.327344
GenSizeBeforeMB
[ 2.62148, 3.716008, 0.881576, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
39.96178021020839
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
2.78908
PromotedMB
0.61064
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
5213.3076
DurationMSec
1.9462000000003172
PauseDurationMSec
2.132699999999204
SuspendDurationMSec
0.009000000000014552
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
44.07480000000032
PauseStartRelativeMSec
5213.1468
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize2789080
TotalPromoted610640
Depth1
GenerationSize0584
TotalPromotedSize0462632
GenerationSize1470040
TotalPromotedSize1148008
GenerationSize21445016
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4765160
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount6
GCHandleCount478
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration1
Gen0ReductionCount267374
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated122528
FreeListConsumed122528
AllocedSinceLastGCMB
28.121544000000004
RatioPeakAfter
10.871255037503406
AllocRateMBSec
638.0413297394384
HeapSizePeakMB
30.3208
UserAllocated
[ 28.121512000000003, 0, 0, 3.200000000000425E-05, 0 ]
HeapSizeBeforeMB
30.3208
GenSizeBeforeMB
[ 28.534191999999997, 0.258792, 1.4195360000000001, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
4.615484499267923
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
28.582944
PromotedMB
0.47008
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
5
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5258.7431
DurationMSec
1.0648000000001048
PauseDurationMSec
1.3371999999999389
SuspendDurationMSec
0.0945000000001528
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
43.24229999999989
PauseStartRelativeMSec
5258.4977
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize28582944
TotalPromoted470080
Depth0
GenerationSize025329040
TotalPromotedSize0470080
GenerationSize1935448
TotalPromotedSize10
GenerationSize21445016
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4765160
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount34
SinkBlockCount6
GCHandleCount442
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration0
Gen0ReductionCount42
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
29.845263999999997
RatioPeakAfter
1.1321285868943383
AllocRateMBSec
690.1867846992429
HeapSizePeakMB
32.359568
UserAllocated
[ 29.845263999999997, 0, 0, 0, 0 ]
HeapSizeBeforeMB
32.359568
GenSizeBeforeMB
[ 30.336232000000003, 0.47004, 1.445016, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.9995850110475537
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.274744
PromotedMB
0.421
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5302.9516
DurationMSec
0.9404999999997017
PauseDurationMSec
1.1810999999997875
SuspendDurationMSec
0.06930000000011205
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
42.92779999999948
PauseStartRelativeMSec
5302.7369
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11274744
TotalPromoted421000
Depth0
GenerationSize07595152
TotalPromotedSize0421000
GenerationSize11361136
TotalPromotedSize10
GenerationSize21445016
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4765160
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount6
SinkBlockCount6
GCHandleCount256
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration0
Gen0ReductionCount23
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
30.015639999999998
RatioPeakAfter
2.9451609721693015
AllocRateMBSec
699.2121655430831
HeapSizePeakMB
33.205936
UserAllocated
[ 30.015639999999998, 0, 0, 0, 0 ]
HeapSizeBeforeMB
33.205936
GenSizeBeforeMB
[ 30.717192, 0.935448, 1.445016, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.677690896848045
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
21.49252
PromotedMB
0.260424
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5344.9892
DurationMSec
0.8352999999997337
PauseDurationMSec
1.1316999999999098
SuspendDurationMSec
0.11329999999998108
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
40.83009999999922
PauseStartRelativeMSec
5344.7233
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize21492520
TotalPromoted260424
Depth0
GenerationSize017553264
TotalPromotedSize0260424
GenerationSize11620800
TotalPromotedSize10
GenerationSize21445016
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4765160
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount15
SinkBlockCount6
GCHandleCount50
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration0
Gen0ReductionCount21
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
29.83548
RatioPeakAfter
1.549176736836816
AllocRateMBSec
730.7226776324469
HeapSizePeakMB
33.295712
UserAllocated
[ 29.83548, 0, 0, 0, 0 ]
HeapSizeBeforeMB
33.295712
GenSizeBeforeMB
[ 30.38128, 1.3611360000000001, 1.445016, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.6969767741134394
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
19.684624
PromotedMB
0.659464
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5389.0247
DurationMSec
1.0928000000003522
PauseDurationMSec
1.3900999999996202
SuspendDurationMSec
0.11799999999948341
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
42.92960000000039
PauseStartRelativeMSec
5388.7556
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize19684624
TotalPromoted659464
Depth0
GenerationSize015076384
TotalPromotedSize0659464
GenerationSize12285664
TotalPromotedSize10
GenerationSize21445016
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4769280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount17
SinkBlockCount6
GCHandleCount-69
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration0
Gen0ReductionCount19
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
29.116984
RatioPeakAfter
1.6899187914384346
AllocRateMBSec
678.2495993440361
HeapSizePeakMB
33.265416
UserAllocated
[ 29.116984, 0, 0, 0, 0 ]
HeapSizeBeforeMB
33.265416
GenSizeBeforeMB
[ 30.091320000000003, 1.6208, 1.445016, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.1365284512296334
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
22.722416
PromotedMB
0.44632
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5430.3204
DurationMSec
0.9729999999999563
PauseDurationMSec
1.2371000000002823
SuspendDurationMSec
0.08020000000033178
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
39.964600000000246
PauseStartRelativeMSec
5430.0832
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize22722416
TotalPromoted446320
Depth0
GenerationSize017666312
TotalPromotedSize0446320
GenerationSize12733528
TotalPromotedSize10
GenerationSize21445016
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4769280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount15
SinkBlockCount6
GCHandleCount-227
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration0
Gen0ReductionCount24
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
29.929296000000008
RatioPeakAfter
1.5116385511118187
AllocRateMBSec
748.8951722274169
HeapSizePeakMB
34.34808
UserAllocated
[ 29.929296000000008, 0, 0, 0, 0 ]
HeapSizeBeforeMB
34.34808
GenSizeBeforeMB
[ 30.50912, 2.285664, 1.445016, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.0025460114516305
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
25.40972
PromotedMB
0.495616
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
5471.7729
DurationMSec
0.9704000000001543
PauseDurationMSec
1.2687999999998283
SuspendDurationMSec
0.11599999999998545
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
40.20730000000003
PauseStartRelativeMSec
5471.5019
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize25409720
TotalPromoted495616
Depth1
GenerationSize022595592
TotalPromotedSize0429360
GenerationSize1425536
TotalPromotedSize166256
GenerationSize21511032
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4769280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount28
SinkBlockCount6
GCHandleCount-388
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration1
Gen0ReductionCount23
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated240
FreeListConsumed240
AllocedSinceLastGCMB
29.858911999999997
RatioPeakAfter
1.3688062678376622
AllocRateMBSec
742.6241503408578
HeapSizePeakMB
34.780984000000004
UserAllocated
[ 29.858911999999997, 0, 0, 0, 0 ]
HeapSizeBeforeMB
34.780984000000004
GenSizeBeforeMB
[ 30.494159999999997, 2.733528, 1.445016, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.0591111507587083
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
15.382552
PromotedMB
0.435032
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5512.4172
DurationMSec
0.9044000000003507
PauseDurationMSec
1.2409999999999854
SuspendDurationMSec
0.1554999999998472
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
39.35980000000018
PauseStartRelativeMSec
5512.1045
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize15382552
TotalPromoted435032
Depth0
GenerationSize012131104
TotalPromotedSize0435032
GenerationSize1862856
TotalPromotedSize10
GenerationSize21511032
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4769280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount14
SinkBlockCount6
GCHandleCount-477
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration0
Gen0ReductionCount22
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
29.632672
RatioPeakAfter
2.1126569895554397
AllocRateMBSec
752.8664271668013
HeapSizePeakMB
32.498056000000005
UserAllocated
[ 29.632672, 0, 0, 0, 0 ]
HeapSizeBeforeMB
32.498056000000005
GenSizeBeforeMB
[ 30.453208000000004, 0.425536, 1.5110320000000002, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.056590017930633
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.820968
PromotedMB
0.152704
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5553.0692
DurationMSec
0.6226999999998952
PauseDurationMSec
0.8640000000004875
SuspendDurationMSec
0.06040000000029977
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
39.532900000000154
PauseStartRelativeMSec
5552.856
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10820968
TotalPromoted152704
Depth0
GenerationSize07416104
TotalPromotedSize0152704
GenerationSize11016272
TotalPromotedSize10
GenerationSize21511032
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4769280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount7
SinkBlockCount6
GCHandleCount-599
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration0
Gen0ReductionCount21
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
29.501128
RatioPeakAfter
3.016786668253709
AllocRateMBSec
746.24244616509
HeapSizePeakMB
32.644552000000004
UserAllocated
[ 29.501128, 0, 0, 0, 0 ]
HeapSizeBeforeMB
32.644552000000004
GenSizeBeforeMB
[ 30.162384000000003, 0.8628560000000001, 1.5110320000000002, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.1387779755388996
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
29.350144
PromotedMB
0.827536
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5594.3103
DurationMSec
1.0375999999996566
PauseDurationMSec
1.2863999999999578
SuspendDurationMSec
0.03699999999935244
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
40.39850000000024
PauseStartRelativeMSec
5594.0919
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize29350144
TotalPromoted827536
Depth0
GenerationSize025115984
TotalPromotedSize0827536
GenerationSize11845568
TotalPromotedSize10
GenerationSize21511032
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4769280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount34
SinkBlockCount6
GCHandleCount-796
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration0
Gen0ReductionCount14
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
29.846512
RatioPeakAfter
1.1253126390112431
AllocRateMBSec
738.8024802901053
HeapSizePeakMB
33.028088000000004
UserAllocated
[ 29.846512, 0, 0, 0, 0 ]
HeapSizeBeforeMB
33.028088000000004
GenSizeBeforeMB
[ 30.392504, 1.016272, 1.5110320000000002, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.0860095622154584
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
26.938232
PromotedMB
0.410728
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5636.5112
DurationMSec
0.9515000000001237
PauseDurationMSec
1.2353999999995722
SuspendDurationMSec
0.09959999999955471
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
40.909200000000055
PauseStartRelativeMSec
5636.2586
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize26938232
TotalPromoted410728
Depth0
GenerationSize022293832
TotalPromotedSize0410728
GenerationSize12255808
TotalPromotedSize10
GenerationSize21511032
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4769280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount21
SinkBlockCount6
GCHandleCount-843
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration0
Gen0ReductionCount24
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
29.458352
RatioPeakAfter
1.2575007892128924
AllocRateMBSec
720.0911286458783
HeapSizePeakMB
33.87484799999999
UserAllocated
[ 29.458352, 0, 0, 0, 0 ]
HeapSizeBeforeMB
33.87484799999999
GenSizeBeforeMB
[ 30.409967999999996, 1.845568, 1.5110320000000002, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.931336398968274
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
23.359048
PromotedMB
0.707032
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
5680.2354
DurationMSec
0.9396000000006097
PauseDurationMSec
1.1768000000001848
SuspendDurationMSec
0.042400000000270666
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
42.574799999999414
PauseStartRelativeMSec
5680.0389
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize23359048
TotalPromoted707032
Depth1
GenerationSize020331304
TotalPromotedSize0703704
GenerationSize1635824
TotalPromotedSize13328
GenerationSize21514360
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4769280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount28
SinkBlockCount22
GCHandleCount-769
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration1
Gen0ReductionCount22
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
30.09944
RatioPeakAfter
1.486143784626839
AllocRateMBSec
706.9778366545567
HeapSizePeakMB
34.714904
UserAllocated
[ 30.09944, 0, 0, 0, 0 ]
HeapSizeBeforeMB
34.714904
GenSizeBeforeMB
[ 30.839783999999998, 2.255808, 1.5110320000000002, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.689730204152981
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
24.523008
PromotedMB
0.517688
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5720.1922
DurationMSec
0.9420000000000073
PauseDurationMSec
1.1601000000000568
SuspendDurationMSec
0.016599999999925785
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
38.834899999999834
PauseStartRelativeMSec
5720.0111
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize24523008
TotalPromoted517688
Depth0
GenerationSize020991104
TotalPromotedSize0517688
GenerationSize11135864
TotalPromotedSize10
GenerationSize21514360
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4773400
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount25
SinkBlockCount22
GCHandleCount-921
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration0
Gen0ReductionCount21
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
27.819944
RatioPeakAfter
1.3246306488991888
AllocRateMBSec
716.3645071829751
HeapSizePeakMB
32.483928
UserAllocated
[ 27.819944, 0, 0, 0, 0 ]
HeapSizeBeforeMB
32.483928
GenSizeBeforeMB
[ 30.225464, 0.635824, 1.5143600000000002, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.9006125765722213
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
20.28732
PromotedMB
0.461784
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5759.9934
DurationMSec
0.9420000000000073
PauseDurationMSec
1.1749999999992724
SuspendDurationMSec
0.015499999999519787
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
38.66710000000057
PauseStartRelativeMSec
5759.8028
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize20287320
TotalPromoted461784
Depth0
GenerationSize016283472
TotalPromotedSize0461784
GenerationSize11595448
TotalPromotedSize10
GenerationSize21514360
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4785760
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount27
SinkBlockCount22
GCHandleCount-968
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration0
Gen0ReductionCount23
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
28.463344
RatioPeakAfter
1.5879396588608057
AllocRateMBSec
736.1127159781721
HeapSizePeakMB
32.21504
UserAllocated
[ 28.463344, 0, 0, 0, 0 ]
HeapSizeBeforeMB
32.21504
GenSizeBeforeMB
[ 29.456536, 1.135864, 1.5143600000000002, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.9491417370050197
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
23.212448
PromotedMB
0.399056
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5801.9353
DurationMSec
0.9326000000000931
PauseDurationMSec
1.2012999999997191
SuspendDurationMSec
0.07069999999930587
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
40.77180000000044
PauseStartRelativeMSec
5801.7084
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize23212448
TotalPromoted399056
Depth0
GenerationSize018809976
TotalPromotedSize0399056
GenerationSize11994072
TotalPromotedSize10
GenerationSize21514360
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4785760
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount20
SinkBlockCount22
GCHandleCount-1075
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration0
Gen0ReductionCount23
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
28.436143999999995
RatioPeakAfter
1.4052594538930148
AllocRateMBSec
697.4463722474771
HeapSizePeakMB
32.619512
UserAllocated
[ 28.436143999999995, 0, 0, 0, 0 ]
HeapSizeBeforeMB
32.619512
GenSizeBeforeMB
[ 29.401423999999995, 1.5954480000000002, 1.5143600000000002, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.8620711836860147
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
21.317176
PromotedMB
0.541208
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5838.5125
DurationMSec
1.0223000000005413
PauseDurationMSec
1.3604000000004817
SuspendDurationMSec
0.1445000000003347
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
35.344600000000355
PauseStartRelativeMSec
5838.214
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize21317176
TotalPromoted541208
Depth0
GenerationSize016374400
TotalPromotedSize0541208
GenerationSize12534376
TotalPromotedSize10
GenerationSize21514360
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4785760
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount27
SinkBlockCount22
GCHandleCount-1099
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration0
Gen0ReductionCount21
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
25.786687999999998
RatioPeakAfter
1.490099814346891
AllocRateMBSec
729.5792850958771
HeapSizePeakMB
31.764720000000004
UserAllocated
[ 25.786687999999998, 0, 0, 0, 0 ]
HeapSizeBeforeMB
31.764720000000004
GenSizeBeforeMB
[ 28.148008000000004, 1.9940719999999998, 1.5143600000000002, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.7063070426384708
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
14.34876
PromotedMB
0.623368
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
5876.2458
DurationMSec
1.0160000000005311
PauseDurationMSec
1.3215000000000146
SuspendDurationMSec
0.1268000000000029
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
36.44080000000031
PauseStartRelativeMSec
5875.977
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize14348760
TotalPromoted623368
Depth1
GenerationSize011297152
TotalPromotedSize0281376
GenerationSize1317624
TotalPromotedSize1341992
GenerationSize21839944
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4785760
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount12
SinkBlockCount22
GCHandleCount-1253
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps12
CondemnedGeneration1
Gen0ReductionCount27
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
27.21376
RatioPeakAfter
2.2570769878372765
AllocRateMBSec
746.7937037606137
HeapSizePeakMB
32.386256
UserAllocated
[ 27.21376, 0, 0, 0, 0 ]
HeapSizeBeforeMB
32.386256
GenSizeBeforeMB
[ 28.229239999999997, 2.534376, 1.5143600000000002, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.499522010047066
(1319 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.1991890963405474
MeanSizeAfterMB
16.114842587005235
MeanSizePeakMB
45.81949850336079
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1339
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
14.762300000002142
TotalPauseTimeMSec
1605.714199999993
MaxSuspendDurationMSec
13.664700000001176
MaxSizePeakMB
51.12072
MaxAllocRateMBSec
2193.6414867924614
TotalAllocatedMB
55110.21676000002
TotalCpuMSec
0
TotalPromotedMB
596.221968000001
TotalSizeAfterMB
21577.774224000008
TotalSizePeakMB
61352.3084960001
FinalizedObjects(empty)
ProcessDuration
30284.4863
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.1945011149228077
MeanSizeAfterMB
16.27452880274443
MeanSizePeakMB
45.7115424493997
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1166
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
13.4992000000002
TotalPauseTimeMSec
1392.7882999999938
MaxSuspendDurationMSec
11.946900000002643
MaxSizePeakMB
50.690400000000004
MaxAllocRateMBSec
2193.6414867924614
TotalAllocatedMB
48166.97300000005
TotalCpuMSec
0
TotalPromotedMB
538.0078720000005
TotalSizeAfterMB
18976.100584000007
TotalSizePeakMB
53299.658496000055
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.2058269005847888
MeanSizeAfterMB
15.020760561403506
MeanSizePeakMB
46.844731883040915
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
171
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
14.762300000002142
TotalPauseTimeMSec
206.1963999999989
MaxSuspendDurationMSec
13.664700000001176
MaxSizePeakMB
51.12072
MaxAllocRateMBSec
2160.7024561091844
TotalAllocatedMB
6940.747135999999
TotalCpuMSec
0
TotalPromotedMB
54.403864000000006
TotalSizeAfterMB
2568.5500559999996
TotalSizePeakMB
8010.4491519999965
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
3.3647500000001855
MeanSizeAfterMB
16.561792
MeanSizePeakMB
21.100423999999997
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
2
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
6.148000000000138
TotalPauseTimeMSec
6.729500000000371
MaxSuspendDurationMSec
0.10969999999997526
MaxSizePeakMB
34.873504
MaxAllocRateMBSec
270.293936146015
TotalAllocatedMB
2.496624
TotalCpuMSec
0
TotalPromotedMB
3.810232
TotalSizeAfterMB
33.123584
TotalSizePeakMB
42.20084799999999
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2N
HeapSizeAfterMB
5.140528
PromotedMB
1.658048
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
5163.0969
DurationMSec
5.974100000000362
PauseDurationMSec
6.148000000000138
SuspendDurationMSec
0.10969999999997526
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
9.236700000000383
PauseStartRelativeMSec
5162.9529
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5140528
TotalPromoted1658048
Depth2
GenerationSize02588760
TotalPromotedSize0256568
GenerationSize1258792
TotalPromotedSize1412944
GenerationSize21419536
TotalPromotedSize2880288
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize4765160
TotalPromotedSize40
FinalizationPromotedSize608
FinalizationPromotedCount4
PinnedObjectCount13
SinkBlockCount5
GCHandleCount631
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration2
Gen0ReductionCount27475
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.496624
RatioPeakAfter
1.4254068842733665
AllocRateMBSec
270.293936146015
HeapSizePeakMB
7.327344
UserAllocated
[ 2.496624, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.327344
GenSizeBeforeMB
[ 2.62148, 3.716008, 0.881576, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
39.96178021020839
BGCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
27.983056
PromotedMB
2.152184
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
77
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7695.5423
DurationMSec
5.419399999999769
PauseDurationMSec
0.5815000000002328
SuspendDurationMSec
0.09150000000045111
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
2.9908000000004904
PauseStartRelativeMSec
7695.3631
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0.5595999999995911
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize27983056
TotalPromoted2152184
Depth2
GenerationSize024787288
TotalPromotedSize0427752
GenerationSize1423936
TotalPromotedSize16400
GenerationSize21865432
TotalPromotedSize21609784
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize4798120
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount4
PinnedObjectCount0
SinkBlockCount22
GCHandleCount772
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.2462364367923215
AllocRateMBSec
0
HeapSizePeakMB
34.873504
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
24.312776
GenSizeBeforeMB
[ 19.201032, 3.144432, 1.859032, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
6.368886040527633
GCThreadIDsToHeapNumbers(empty)
DurationMSec
36901.866799999996
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="206336"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpsHttpSys_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 2:42:56 PM"\\r\\n SessionEndTime="8/21/2023 2:43:37 PM"\\r\\n SessionDuration="00:0...
Events
[ <Event MSec= "0.0000" PID="6512" PName="PerfView" TID="8476" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 2:43:34 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="540" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 2:42:56 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="6512" PName="PerfView" TID="8476" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "11.6691" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="6512" PName="PerfView" TID="8476" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "11.6388" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "11.6691" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "11.6895" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "11.6895" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", - "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337150792174.5
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="6512" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="155.8624" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmp15DB.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="40842.082" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", - "
Count109
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="8476" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337150792174.5" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337150792174.5" /> ... (more) ]
Count1543
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", - "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="102" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1327" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="186" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="28" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="5" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", - " ... (more) ]
Count78
(values)
indexvalue
0\r\n", - "
1\r\n", - "
2\r\n", - "
3\r\n", - "
4\r\n", - "
5\r\n", - "
6\r\n", - "
7\r\n", - "
8\r\n", - "
9\r\n", - "
10\r\n", - "
11\r\n", - "
12\r\n", - "
13\r\n", - "
14\r\n", - "
15\r\n", - "
16\r\n", - "
17\r\n", - "
18\r\n", - "
19\r\n", - "
... (more)
MaxEventIndex206336
EventCount
206336
Size
38112967
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpsHttpSys_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", - "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", - "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", - "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", - "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", - " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", - " at lambda_method760(Closure, TraceLog)\r\n", - " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 14:42:56Z
SessionEndTime2023-08-21 14:43:37Z
SessionEndTimeRelativeMSec
40842.082
SessionDuration00:00:40.8420820
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [100, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [98, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [102, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [103, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpsHttpSys_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
1GC.Analysis.API.GCProcessData
Benchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\0qvgxxuw.wqo\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios json --urls https://10.0.0.104:5000 --server HttpSys --kestrelTransport Sockets --protocol https 
NumberOfHeapCountSwitches
4
Benchmark
JsonHttpsHttpSys
Id
datas_3 | JsonHttpsHttpSys
TotalSuspensionTimeMSec
200.64140000000862
PercentPauseTimeInGC
5.302101492142507
PercentTimeInGC
4.639579440381607
MeanHeapSizeBeforeMB
45.81949850336079
MaxHeapSizeMB
51.12072
TotalAllocationsMB
55110.21676000002
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpsHttpSys_Windows.gc.etl.zip
ProcessName
Benchmarks
datas_3 | JsonHttpsIISInProc
Submission#4+LoadInfo
WorkingSetMB
112
PrivateMemoryMB
87
Latency50thMS
0.34
Latency75thMS
0.38
Latency90thMS
0.54
Latency99thMS
3.19
MeanLatencyMS
0.5
ProcessId
9160
RequestsPerMSec
675.651
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
Benchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\hanwmcy0.pca\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios json --urls https://10.0.0.104:5000 --server IISInProcess --kestrelTransport Sockets --protocol https 
ProcessID
9160
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.196288
PromotedMB
1.333936
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5746.4241
DurationMSec
5.5
PauseDurationMSec
5.764900000000125
SuspendDurationMSec
0.009599999999409192
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
5746.2231
PauseStartRelativeMSec
5746.2231
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4196288
TotalPromoted1333936
Depth0
GenerationSize00
TotalPromotedSize01333936
GenerationSize13887288
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize29770
FinalizationPromotedCount19
PinnedObjectCount33
SinkBlockCount4
GCHandleCount604
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
0.6525405310598319
AllocRateMBSec
0
HeapSizePeakMB
2.738248
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.738248
GenSizeBeforeMB
[ 2.629968, 0, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
0.10022447891059795
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
6.734136
PromotedMB
3.214872
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
5768.5581
DurationMSec
10.246299999999792
PauseDurationMSec
10.584799999999632
SuspendDurationMSec
0.2736000000004424
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
16.32930000000033
PauseStartRelativeMSec
5768.2545
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6734136
TotalPromoted3214872
Depth1
GenerationSize01472000
TotalPromotedSize01931768
GenerationSize13639936
TotalPromotedSize11283104
GenerationSize21263760
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4250160
TotalPromotedSize40
FinalizationPromotedSize832
FinalizationPromotedCount20
PinnedObjectCount21
SinkBlockCount4
GCHandleCount904
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.18244
RatioPeakAfter
0.9857133862458375
AllocRateMBSec
133.65177931693066
HeapSizePeakMB
6.637928
UserAllocated
[ 2.18244, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.637928
GenSizeBeforeMB
[ 2.64236, 3.887288, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
39.32808453561385
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
8.553824
PromotedMB
1.83372
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
5792.0077
DurationMSec
6.197100000000319
PauseDurationMSec
6.30330000000049
SuspendDurationMSec
0.05850000000009459
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
13.123499999999694
PauseStartRelativeMSec
5791.9292
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8553824
TotalPromoted1833720
Depth0
GenerationSize02494824
TotalPromotedSize01833720
GenerationSize13802320
TotalPromotedSize10
GenerationSize21263760
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4884640
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount14
SinkBlockCount4
GCHandleCount1145
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount9379
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.274792
RatioPeakAfter
0.8924962683356589
AllocRateMBSec
173.33729569094018
HeapSizePeakMB
7.634256
UserAllocated
[ 2.274792, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.634256
GenSizeBeforeMB
[ 2.62228, 3.639936, 1.26376, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
32.44641423188806
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
13.54888
PromotedMB
5.170416
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
5912.284
DurationMSec
6.108600000000479
PauseDurationMSec
6.558600000000297
SuspendDurationMSec
0.11560000000008586
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
113.85379999999986
PauseStartRelativeMSec
5912.0596
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13548880
TotalPromoted5170416
Depth1
GenerationSize03381056
TotalPromotedSize01648368
GenerationSize13868176
TotalPromotedSize13522048
GenerationSize24750528
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41440840
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount26
SinkBlockCount6
GCHandleCount1223
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration1
Gen0ReductionCount190001325
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
16.272384000000002
RatioPeakAfter
1.6066685954853837
AllocRateMBSec
142.9235036511739
HeapSizePeakMB
21.768560000000004
UserAllocated
[ 16.272352, 0, 0, 3.200000000000425E-05, 0 ]
HeapSizeBeforeMB
21.768560000000004
GenSizeBeforeMB
[ 16.5942, 3.80232, 1.26376, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.446781228511589
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
13.165904
PromotedMB
8.375448
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
5
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
6041.6467
DurationMSec
23.430099999999584
PauseDurationMSec
1.4184000000004744
SuspendDurationMSec
0.1419000000005326
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
20.99619999999959
PauseStartRelativeMSec
6041.467
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.329200000000128
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13165904
TotalPromoted8375448
Depth2
GenerationSize02952760
TotalPromotedSize05792
GenerationSize13868176
TotalPromotedSize13522048
GenerationSize24750528
TotalPromotedSize24739360
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize41486160
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount5
PinnedObjectCount0
SinkBlockCount7
GCHandleCount1237
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
2.0217768563404386
AllocRateMBSec
0
HeapSizePeakMB
26.618520000000004
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
12.10804
GenSizeBeforeMB
[ 3.381056, 3.868176, 4.750528, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.2122355372970626
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.866512
PromotedMB
0.005792
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6042.8244
DurationMSec
1.2570999999998094
PauseDurationMSec
1.8265999999994165
SuspendDurationMSec
0
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
124.43040000000019
PauseStartRelativeMSec
6042.8244
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11866512
TotalPromoted5792
Depth0
GenerationSize01653368
TotalPromotedSize05792
GenerationSize13868176
TotalPromotedSize10
GenerationSize24750528
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41486160
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount6
GCHandleCount1237
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount50
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure0
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.815992
RatioPeakAfter
2.2431629445956824
AllocRateMBSec
143.18038035721153
HeapSizePeakMB
26.618520000000004
UserAllocated
[ 17.707712, 0, 0, 0.10828, 0 ]
HeapSizeBeforeMB
26.618520000000004
GenSizeBeforeMB
[ 17.891536000000002, 3.8681760000000005, 4.750528, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.4467316663625955
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
9.856056
PromotedMB
1.726816
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6166.66
DurationMSec
2.3190999999997075
PauseDurationMSec
2.864400000000387
SuspendDurationMSec
0.08850000000074942
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
101.06829999999991
PauseStartRelativeMSec
6166.1473
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9856056
TotalPromoted1726816
Depth1
GenerationSize01658432
TotalPromotedSize047120
GenerationSize1203304
TotalPromotedSize11679696
GenerationSize26395760
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41490280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount8
SinkBlockCount6
GCHandleCount1237
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration1
Gen0ReductionCount9
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated1368
FreeListConsumed1368
AllocedSinceLastGCMB
15.655896
RatioPeakAfter
2.4909866583550255
AllocRateMBSec
154.90411929358677
HeapSizePeakMB
24.551304000000002
UserAllocated
[ 15.655928, 0, 0, -3.2E-05, 0 ]
HeapSizeBeforeMB
24.551304000000002
GenSizeBeforeMB
[ 15.82432, 3.8681760000000005, 4.750528, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.756014228438575
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
9.59848
PromotedMB
0.081592
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6285.6595
DurationMSec
0.9425000000001091
PauseDurationMSec
1.1682000000000698
SuspendDurationMSec
0.10689999999976862
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
116.48480000000018
PauseStartRelativeMSec
6285.4654
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9598480
TotalPromoted81592
Depth1
GenerationSize01472000
TotalPromotedSize03072
GenerationSize169952
TotalPromotedSize178520
GenerationSize26441488
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41506760
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount7
GCHandleCount1237
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration1
Gen0ReductionCount18
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.517528
RatioPeakAfter
2.544313682999808
AllocRateMBSec
150.3846682142217
HeapSizePeakMB
24.421543999999997
UserAllocated
[ 17.517528, 0, 0, 0, 0 ]
HeapSizeBeforeMB
24.421543999999997
GenSizeBeforeMB
[ 17.714199999999998, 0.20330399999999998, 6.39576, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
0.9929198575472511
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
9.616336
PromotedMB
0.001496
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6398.3523
DurationMSec
0.993600000000697
PauseDurationMSec
1.2452999999995882
SuspendDurationMSec
0.13500000000021828
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
111.52900000000045
PauseStartRelativeMSec
6398.1322
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9616336
TotalPromoted1496
Depth0
GenerationSize01472000
TotalPromotedSize01496
GenerationSize171328
TotalPromotedSize10
GenerationSize26441488
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41523240
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount8
GCHandleCount1237
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount7
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.461864000000002
RatioPeakAfter
2.5226747484696874
AllocRateMBSec
156.56792403769361
HeapSizePeakMB
24.258888000000002
UserAllocated
[ 17.461864000000002, 0, 0, 0, 0 ]
HeapSizeBeforeMB
24.258888000000002
GenSizeBeforeMB
[ 17.639168, 0.069952, 6.4414880000000005, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.1042409485136133
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
9.62244
PromotedMB
0.002408
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6509.7784
DurationMSec
1.1786999999994805
PauseDurationMSec
1.4034999999994398
SuspendDurationMSec
0.10239999999976135
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
110.23820000000069
PauseStartRelativeMSec
6509.5852
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9622440
TotalPromoted2408
Depth0
GenerationSize01472000
TotalPromotedSize02408
GenerationSize173312
TotalPromotedSize10
GenerationSize26441488
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41527360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount8
GCHandleCount1237
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount8
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.726952
RatioPeakAfter
2.550657837305299
AllocRateMBSec
160.80589124278055
HeapSizePeakMB
24.543552000000002
UserAllocated
[ 17.726952, 0, 0, 0, 0 ]
HeapSizeBeforeMB
24.543552000000002
GenSizeBeforeMB
[ 17.922456, 0.07132800000000002, 6.4414880000000005, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.2571467471378868
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
9.623776
PromotedMB
0.002024
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6614.4028
DurationMSec
1.0778000000000247
PauseDurationMSec
1.2593999999999141
SuspendDurationMSec
0.044999999999163265
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
103.29370000000017
PauseStartRelativeMSec
6614.252
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9623776
TotalPromoted2024
Depth0
GenerationSize01472000
TotalPromotedSize02024
GenerationSize174648
TotalPromotedSize10
GenerationSize26441488
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41527360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount8
GCHandleCount1237
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount10
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.574887999999998
RatioPeakAfter
2.536034920181019
AllocRateMBSec
170.1448200616298
HeapSizePeakMB
24.406232000000003
UserAllocated
[ 17.574887999999998, 0, 0, 0, 0 ]
HeapSizeBeforeMB
24.406232000000003
GenSizeBeforeMB
[ 17.783152, 0.073312, 6.4414880000000005, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.2045553886014984
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.177976
PromotedMB
0.285184
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6713.7328
DurationMSec
1.1147000000000844
PauseDurationMSec
1.3024999999997817
SuspendDurationMSec
0.03799999999955617
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
98.09980000000087
PauseStartRelativeMSec
6713.5816
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10177976
TotalPromoted285184
Depth0
GenerationSize01802568
TotalPromotedSize0285184
GenerationSize1294160
TotalPromotedSize10
GenerationSize26441488
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41531480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount12
GCHandleCount1290
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount10
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
16.698904
RatioPeakAfter
2.3170060530698837
AllocRateMBSec
170.22362940597077
HeapSizePeakMB
23.582432
UserAllocated
[ 16.698904, 0, 0, 0, 0 ]
HeapSizeBeforeMB
23.582432
GenSizeBeforeMB
[ 16.958016, 0.074648, 6.4414880000000005, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.3103318534880715
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.018904
PromotedMB
0.067784
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6832.178
DurationMSec
1.0874000000003434
PauseDurationMSec
1.2887999999993554
SuspendDurationMSec
0.07179999999971187
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
117.15890000000036
PauseStartRelativeMSec
6832.0074
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10018904
TotalPromoted67784
Depth0
GenerationSize01604784
TotalPromotedSize067784
GenerationSize1328752
TotalPromotedSize10
GenerationSize26441488
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41535600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount12
GCHandleCount1293
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount11
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.283472
RatioPeakAfter
2.4355063188548374
AllocRateMBSec
147.52163087908767
HeapSizePeakMB
24.401104000000004
UserAllocated
[ 17.283472, 0, 0, 0, 0 ]
HeapSizeBeforeMB
24.401104000000004
GenSizeBeforeMB
[ 17.557176000000002, 0.29416, 6.4414880000000005, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.0880751589092557
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
9.971304
PromotedMB
0.085536
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6948.8917
DurationMSec
0.9862999999995736
PauseDurationMSec
1.2466000000003987
SuspendDurationMSec
0.13060000000041327
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
115.39789999999994
PauseStartRelativeMSec
6948.6644
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9971304
TotalPromoted85536
Depth0
GenerationSize01472000
TotalPromotedSize085536
GenerationSize1413936
TotalPromotedSize10
GenerationSize26441488
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41535600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount13
GCHandleCount1299
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount9
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.371032
RatioPeakAfter
2.4531844581210245
AllocRateMBSec
150.5316127936471
HeapSizePeakMB
24.461448000000004
UserAllocated
[ 17.371032, 0, 0, 0, 0 ]
HeapSizeBeforeMB
24.461448000000004
GenSizeBeforeMB
[ 17.582928000000003, 0.328752, 6.4414880000000005, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.0687173420096063
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.021232
PromotedMB
0.050048
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7065.3824
DurationMSec
0.9170999999996639
PauseDurationMSec
1.1770000000005894
SuspendDurationMSec
0.12580000000070868
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
115.27839999999924
PauseStartRelativeMSec
7065.1576
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10021232
TotalPromoted50048
Depth0
GenerationSize01472000
TotalPromotedSize050048
GenerationSize1463864
TotalPromotedSize10
GenerationSize26441488
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41535600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount14
GCHandleCount1299
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount8
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.389664
RatioPeakAfter
2.450351014725535
AllocRateMBSec
150.84928312676195
HeapSizePeakMB
24.555536
UserAllocated
[ 17.389664, 0, 0, 0, 0 ]
HeapSizeBeforeMB
24.555536
GenSizeBeforeMB
[ 17.591832, 0.41393599999999997, 6.4414880000000005, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.0106873532705147
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.021584
PromotedMB
0.000544
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7177.3007
DurationMSec
0.8872000000001208
PauseDurationMSec
1.2232999999996537
SuspendDurationMSec
0.1356999999998152
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
110.70110000000022
PauseStartRelativeMSec
7177.0018
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10021584
TotalPromoted544
Depth0
GenerationSize01472000
TotalPromotedSize0544
GenerationSize1464216
TotalPromotedSize10
GenerationSize26441488
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41535600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount14
GCHandleCount1299
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount7
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.342336
RatioPeakAfter
2.4493365519861934
AllocRateMBSec
156.6591117884101
HeapSizePeakMB
24.546232000000003
UserAllocated
[ 17.342336, 0, 0, 0, 0 ]
HeapSizeBeforeMB
24.546232000000003
GenSizeBeforeMB
[ 17.532600000000002, 0.463864, 6.4414880000000005, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.0929698975376727
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.022344
PromotedMB
0.00088
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7290.3079
DurationMSec
0.9517000000005282
PauseDurationMSec
1.144800000000032
SuspendDurationMSec
0.06549999999970169
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
111.95650000000023
PauseStartRelativeMSec
7290.1458
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10022344
TotalPromoted880
Depth0
GenerationSize01472000
TotalPromotedSize0880
GenerationSize1464976
TotalPromotedSize10
GenerationSize26441488
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41535600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount15
GCHandleCount1299
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount7
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.633927999999997
RatioPeakAfter
2.479888537052809
AllocRateMBSec
157.5069602926133
HeapSizePeakMB
24.854296
UserAllocated
[ 17.633927999999997, 0, 0, 0, 0 ]
HeapSizeBeforeMB
24.854296
GenSizeBeforeMB
[ 17.840312, 0.464216, 6.4414880000000005, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.0121899571446387
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.028648
PromotedMB
0.002256
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7399.8889
DurationMSec
1.1900000000005093
PauseDurationMSec
1.392800000000534
SuspendDurationMSec
0.07050000000072032
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
108.45799999999963
PauseStartRelativeMSec
7399.7188
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10028648
TotalPromoted2256
Depth0
GenerationSize01472000
TotalPromotedSize02256
GenerationSize1467160
TotalPromotedSize10
GenerationSize26441488
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41539720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount16
GCHandleCount1299
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount8
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.427055999999997
RatioPeakAfter
2.4547245052373956
AllocRateMBSec
160.68022644710447
HeapSizePeakMB
24.617568
UserAllocated
[ 17.427055999999997, 0, 0, 0, 0 ]
HeapSizeBeforeMB
24.617568
GenSizeBeforeMB
[ 17.602824, 0.464976, 6.4414880000000005, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.2679015537442895
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.029328
PromotedMB
0.000848
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7505.633
DurationMSec
0.9293999999999869
PauseDurationMSec
1.111800000000585
SuspendDurationMSec
0.05029999999987922
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
104.40269999999964
PauseStartRelativeMSec
7505.4828
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10029328
TotalPromoted848
Depth0
GenerationSize01472000
TotalPromotedSize0848
GenerationSize1467840
TotalPromotedSize10
GenerationSize26441488
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41539720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount16
GCHandleCount1299
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount10
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.584304
RatioPeakAfter
2.4730103552301808
AllocRateMBSec
168.42767476320114
HeapSizePeakMB
24.802632
UserAllocated
[ 17.584304, 0, 0, 0, 0 ]
HeapSizeBeforeMB
24.802632
GenSizeBeforeMB
[ 17.785704, 0.46716, 6.4414880000000005, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.0536940420516447
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.030776
PromotedMB
0.001568
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7608.7688
DurationMSec
1.0142000000005282
PauseDurationMSec
1.2177000000001499
SuspendDurationMSec
0.06260000000020227
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
102.03759999999966
PauseStartRelativeMSec
7608.6011
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10030776
TotalPromoted1568
Depth0
GenerationSize01472000
TotalPromotedSize01568
GenerationSize1469288
TotalPromotedSize10
GenerationSize26441488
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41539720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount17
GCHandleCount1299
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps7
CondemnedGeneration0
Gen0ReductionCount8
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
17.441224
RatioPeakAfter
2.4605155174435156
AllocRateMBSec
170.92938289414937
HeapSizePeakMB
24.68088
UserAllocated
[ 17.441224, 0, 0, 0, 0 ]
HeapSizeBeforeMB
24.68088
GenSizeBeforeMB
[ 17.663272, 0.46784000000000003, 6.4414880000000005, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.1793099240427873
(367 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.5216315245478107
MeanSizeAfterMB
12.945176103359168
MeanSizePeakMB
19.934799049095588
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
387
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
10.584799999999632
TotalPauseTimeMSec
588.8714000000027
MaxSuspendDurationMSec
0.2736000000004424
MaxSizePeakMB
26.618520000000004
MaxAllocRateMBSec
235.9653454356068
TotalAllocatedMB
3775.8781999999987
TotalCpuMSec
0
TotalPromotedMB
44.715495999999874
TotalSizeAfterMB
5009.783151999998
TotalSizePeakMB
7714.767231999993
FinalizedObjects(empty)
ProcessDuration
30293.592999999997
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.472460212201573
MeanSizeAfterMB
12.941785697612726
MeanSizePeakMB
19.88674368169759
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
377
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
6.30330000000049
TotalPauseTimeMSec
555.117499999993
MaxSuspendDurationMSec
0.2187000000012631
MaxSizePeakMB
26.618520000000004
MaxAllocRateMBSec
235.9653454356068
TotalAllocatedMB
3685.4609679999994
TotalCpuMSec
0
TotalPromotedMB
8.709191999999994
TotalSizeAfterMB
4879.0532079999975
TotalSizePeakMB
7497.3023679999915
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
3.882475000000909
MeanSizeAfterMB
12.366709
MeanSizePeakMB
20.583168999999998
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
8
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
10.584799999999632
TotalPauseTimeMSec
31.05980000000727
MaxSuspendDurationMSec
0.2736000000004424
MaxSizePeakMB
25.057152000000002
MaxAllocRateMBSec
177.10411631402604
TotalAllocatedMB
90.417232
TotalCpuMSec
0
TotalPromotedMB
16.313128
TotalSizeAfterMB
98.933672
TotalSizePeakMB
164.66535199999998
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.347050000001218
MeanSizeAfterMB
15.898136000000001
MeanSizePeakMB
26.399756000000004
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
2
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
1.4184000000004744
TotalPauseTimeMSec
2.694100000002436
MaxSuspendDurationMSec
0.19529999999940628
MaxSizePeakMB
26.618520000000004
MaxAllocRateMBSec
0
TotalAllocatedMB
0
TotalCpuMSec
0
TotalPromotedMB
19.693176
TotalSizeAfterMB
31.796272000000002
TotalSizePeakMB
52.79951200000001
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking(empty)
BGCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
13.165904
PromotedMB
8.375448
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
5
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
6041.6467
DurationMSec
23.430099999999584
PauseDurationMSec
1.4184000000004744
SuspendDurationMSec
0.1419000000005326
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
20.99619999999959
PauseStartRelativeMSec
6041.467
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.329200000000128
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13165904
TotalPromoted8375448
Depth2
GenerationSize02952760
TotalPromotedSize05792
GenerationSize13868176
TotalPromotedSize13522048
GenerationSize24750528
TotalPromotedSize24739360
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize41486160
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount5
PinnedObjectCount0
SinkBlockCount7
GCHandleCount1237
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
2.0217768563404386
AllocRateMBSec
0
HeapSizePeakMB
26.618520000000004
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
12.10804
GenSizeBeforeMB
[ 3.381056, 3.868176, 4.750528, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.2122355372970626
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
18.630368
PromotedMB
11.317728
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
154
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
21336.9288
DurationMSec
42.221999999997934
PauseDurationMSec
1.2757000000019616
SuspendDurationMSec
0.19529999999940628
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
41.126899999999296
PauseStartRelativeMSec
21336.81
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.2070000000021537
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize18630368
TotalPromoted11317728
Depth2
GenerationSize03586408
TotalPromotedSize035768
GenerationSize12873168
TotalPromotedSize14322512
GenerationSize210514552
TotalPromotedSize26851200
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize41547960
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount5
PinnedObjectCount0
SinkBlockCount23
GCHandleCount1408
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.4052858215146367
AllocRateMBSec
0
HeapSizePeakMB
26.180992
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.602584
GenSizeBeforeMB
[ 2.140032, 2.83972, 10.514552, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.8234078253727768
GCThreadIDsToHeapNumbers(empty)
DurationMSec
38149.7459
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="19163"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpsIISInProc_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 2:27:54 PM"\\r\\n SessionEndTime="8/21/2023 2:28:36 PM"\\r\\n SessionDuration="00:...
Events
[ <Event MSec= "0.0000" PID="2076" PName="PerfView" TID="12132" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 2:28:33 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="91" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 2:27:54 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="2076" PName="PerfView" TID="12132" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "8.8124" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="2076" PName="PerfView" TID="12132" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "8.7809" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "8.8124" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "8.8320" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "8.8320" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", - "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337151694059
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="2076" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="155.9807" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmp52D6.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="42082.4007" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", - "
Count108
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="12132" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337151694059" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337151694059" /> ... (more) ]
Count1626
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", - "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="102" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1375" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="219" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="28" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="5" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", - " ... (more) ]
Count78
(values)
indexvalue
0\r\n", - "
1\r\n", - "
2\r\n", - "
3\r\n", - "
4\r\n", - "
5\r\n", - "
6\r\n", - "
7\r\n", - "
8\r\n", - "
9\r\n", - "
10\r\n", - "
11\r\n", - "
12\r\n", - "
13\r\n", - "
14\r\n", - "
15\r\n", - "
16\r\n", - "
17\r\n", - "
18\r\n", - "
19\r\n", - "
... (more)
MaxEventIndex19163
EventCount
19163
Size
4529460
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpsIISInProc_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", - "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", - "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", - "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", - "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", - " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", - " at lambda_method760(Closure, TraceLog)\r\n", - " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 14:27:54Z
SessionEndTime2023-08-21 14:28:36Z
SessionEndTimeRelativeMSec
42082.4007
SessionDuration00:00:42.0824007
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [100, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [98, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [102, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [103, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpsIISInProc_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
1GC.Analysis.API.GCProcessData
Benchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\hanwmcy0.pca\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios json --urls https://10.0.0.104:5000 --server IISInProcess --kestrelTransport Sockets --protocol https 
NumberOfHeapCountSwitches
7
Benchmark
JsonHttpsIISInProc
Id
datas_3 | JsonHttpsIISInProc
TotalSuspensionTimeMSec
32.259700000012344
PercentPauseTimeInGC
1.9438810048052169
PercentTimeInGC
1.8373908304636908
MeanHeapSizeBeforeMB
19.934799049095588
MaxHeapSizeMB
26.618520000000004
TotalAllocationsMB
3775.8781999999987
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpsIISInProc_Windows.gc.etl.zip
ProcessName
Benchmarks
datas_3 | JsonHttpsIISOutOfProc
Submission#4+LoadInfo
WorkingSetMB
116
PrivateMemoryMB
82
Latency50thMS
0.34
Latency75thMS
0.38
Latency90thMS
0.51
Latency99thMS
2.31
MeanLatencyMS
0.48
ProcessId
5684
RequestsPerMSec
682.929
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
Benchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\adkpe31d.ocy\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios json --urls https://10.0.0.104:5000 --server IISOutOfProcess --kestrelTransport Sockets --protocol https 
ProcessID
5684
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.195352
PromotedMB
1.316576
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6703.0297
DurationMSec
5.216800000000148
PauseDurationMSec
5.4780000000000655
SuspendDurationMSec
0.0091999999995096
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
6702.8297
PauseStartRelativeMSec
6702.8297
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4195352
TotalPromoted1316576
Depth0
GenerationSize00
TotalPromotedSize01316576
GenerationSize13886352
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize29770
FinalizationPromotedCount19
PinnedObjectCount27
SinkBlockCount5
GCHandleCount604
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
0.6526861154916203
AllocRateMBSec
0
HeapSizePeakMB
2.738248
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.738248
GenSizeBeforeMB
[ 2.629968, 0, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
0.08165993936145871
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
7.440464
PromotedMB
3.183064
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6725.0316
DurationMSec
6.822499999999309
PauseDurationMSec
6.928200000000288
SuspendDurationMSec
0.058399999999892316
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
16.704600000000028
PauseStartRelativeMSec
6724.9524
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize7440464
TotalPromoted3183064
Depth1
GenerationSize03942128
TotalPromotedSize01918672
GenerationSize11905928
TotalPromotedSize11264392
GenerationSize21246328
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4237800
TotalPromotedSize40
FinalizationPromotedSize832
FinalizationPromotedCount20
PinnedObjectCount14
SinkBlockCount4
GCHandleCount869
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.160472
RatioPeakAfter
0.8892284137118329
AllocRateMBSec
129.3339559163342
HeapSizePeakMB
6.6162719999999995
UserAllocated
[ 2.160472, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.6162719999999995
GenSizeBeforeMB
[ 2.62164, 3.886352, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
29.316035340713736
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
9.208216
PromotedMB
1.524808
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6741.9946
DurationMSec
4.891700000000128
PauseDurationMSec
5.106200000000172
SuspendDurationMSec
0.12210000000050059
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
9.95510000000013
PauseStartRelativeMSec
6741.8102
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9208216
TotalPromoted1524808
Depth0
GenerationSize01429832
TotalPromotedSize01524808
GenerationSize15769856
TotalPromotedSize10
GenerationSize21246328
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4653920
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount14
SinkBlockCount4
GCHandleCount960
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount55000288
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.282384
RatioPeakAfter
0.7821997225086813
AllocRateMBSec
229.26781247802336
HeapSizePeakMB
7.2026639999999995
UserAllocated
[ 2.282384, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.2026639999999995
GenSizeBeforeMB
[ 3.942128, 1.905928, 1.246328, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
33.90278395623266
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
16.080776
PromotedMB
5.091704
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6835.4939
DurationMSec
6.605799999999363
PauseDurationMSec
6.820700000000215
SuspendDurationMSec
0.07750000000032742
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
88.4426999999996
PauseStartRelativeMSec
6835.3299
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize16080776
TotalPromoted5091704
Depth1
GenerationSize04468744
TotalPromotedSize01809120
GenerationSize16094592
TotalPromotedSize13282584
GenerationSize23993040
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41416120
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount37
SinkBlockCount4
GCHandleCount1221
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration1
Gen0ReductionCount248001332
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.8754
RatioPeakAfter
1.2557319373144677
AllocRateMBSec
145.57900199790438
HeapSizePeakMB
20.193143999999997
UserAllocated
[ 12.875368000000002, 0, 0, 3.200000000000425E-05, 0 ]
HeapSizeBeforeMB
20.193143999999997
GenSizeBeforeMB
[ 13.068679999999999, 5.769856, 1.246328, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
7.159832632469793
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
18.935488
PromotedMB
7.374544
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
5
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
6940.4491
DurationMSec
58.58420000000024
PauseDurationMSec
1.6694000000006781
SuspendDurationMSec
0.12190000000009604
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
56.22240000000056
PauseStartRelativeMSec
6940.3205
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.6201000000000931
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize18935488
TotalPromoted7374544
Depth2
GenerationSize07249296
TotalPromotedSize03784
GenerationSize16094592
TotalPromotedSize13282584
GenerationSize23993040
TotalPromotedSize23979928
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize41490280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount5
PinnedObjectCount0
SinkBlockCount4
GCHandleCount1235
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.324767547580501
AllocRateMBSec
0
HeapSizePeakMB
25.085120000000003
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.664656
GenSizeBeforeMB
[ 4.468744, 6.094592, 3.99304, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.252353861761318
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.665424
PromotedMB
0.003784
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6941.4419
DurationMSec
1.370600000000195
PauseDurationMSec
1.8653000000003885
SuspendDurationMSec
0
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
99.34090000000015
PauseStartRelativeMSec
6941.4419
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11665424
TotalPromoted3784
Depth0
GenerationSize03952
TotalPromotedSize03784
GenerationSize16094592
TotalPromotedSize10
GenerationSize23993040
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41465560
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount4
GCHandleCount1233
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration0
Gen0ReductionCount1069
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure0
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
14.826048
RatioPeakAfter
2.150382189280047
AllocRateMBSec
149.2441481806585
HeapSizePeakMB
25.085120000000003
UserAllocated
[ 14.717768, 0, 0, 0.10828, 0 ]
HeapSizeBeforeMB
25.085120000000003
GenSizeBeforeMB
[ 14.889208000000002, 6.094592, 3.9930399999999997, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.843068902893675
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
11.199032
PromotedMB
2.348288
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7044.8253
DurationMSec
2.878600000000006
PauseDurationMSec
3.4150999999992564
SuspendDurationMSec
0.08919999999943684
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
45.28650000000016
PauseStartRelativeMSec
7044.3226
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11199032
TotalPromoted2348288
Depth1
GenerationSize0136
TotalPromotedSize04264
GenerationSize13374824
TotalPromotedSize12344024
GenerationSize26200792
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41515000
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount15
SinkBlockCount5
GCHandleCount1233
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration1
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated2968
FreeListConsumed3000
AllocedSinceLastGCMB
8.51792
RatioPeakAfter
1.6930120388976475
AllocRateMBSec
188.0896072781065
HeapSizePeakMB
18.960096
UserAllocated
[ 8.517952, 0, 0, -3.2E-05, 0 ]
HeapSizeBeforeMB
18.960096
GenSizeBeforeMB
[ 8.764184, 6.094592, 3.9930399999999997, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
7.012295283931734
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
13.69552
PromotedMB
8.644408
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
8
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7151.4115
DurationMSec
19.098500000000058
PauseDurationMSec
1.6154999999998836
SuspendDurationMSec
0.2845999999999549
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
17.735099999999875
PauseStartRelativeMSec
7151.2357
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.518699999999626
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13695520
TotalPromoted8644408
Depth2
GenerationSize02483648
TotalPromotedSize01752
GenerationSize13375440
TotalPromotedSize12344024
GenerationSize26200792
TotalPromotedSize26190384
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize41527360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount4
PinnedObjectCount0
SinkBlockCount7
GCHandleCount1235
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.8290991506711682
AllocRateMBSec
0
HeapSizePeakMB
25.050463999999998
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
9.684032
GenSizeBeforeMB
[ 0.000136, 3.374824, 6.200792, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.7030416241542743
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.211872
PromotedMB
0.001752
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7151.5133
DurationMSec
1.2625000000007276
PauseDurationMSec
1.704000000000633
SuspendDurationMSec
0
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
103.80799999999999
PauseStartRelativeMSec
7151.5133
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11211872
TotalPromoted1752
Depth0
GenerationSize00
TotalPromotedSize01752
GenerationSize13375440
TotalPromotedSize10
GenerationSize26200792
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41527360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount0
SinkBlockCount6
GCHandleCount1233
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration0
Gen0ReductionCount27
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure0
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
15.300192
RatioPeakAfter
2.2342802343801282
AllocRateMBSec
147.38933415536374
HeapSizePeakMB
25.050463999999998
UserAllocated
[ 15.191944, 0, 0, 0.108248, 0 ]
HeapSizeBeforeMB
25.050463999999998
GenSizeBeforeMB
[ 15.366568, 3.3748240000000003, 6.200791999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.6149821821220551
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
10.948984
PromotedMB
0.13856
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7244.6841
DurationMSec
1.2427999999999884
PauseDurationMSec
1.4265000000004875
SuspendDurationMSec
0.073500000000422
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
74.01919999999973
PauseStartRelativeMSec
7244.5314
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10948984
TotalPromoted138560
Depth1
GenerationSize00
TotalPromotedSize01936
GenerationSize12969728
TotalPromotedSize1136624
GenerationSize26335376
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41535600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount7
GCHandleCount1233
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration1
Gen0ReductionCount11
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated1272
FreeListConsumed1272
AllocedSinceLastGCMB
13.060528000000001
RatioPeakAfter
2.0930226950738082
AllocRateMBSec
176.44784056028774
HeapSizePeakMB
22.916472000000002
UserAllocated
[ 13.060528000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
22.916472000000002
GenSizeBeforeMB
[ 13.23196, 3.3754399999999998, 6.200791999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.890763820867834
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
10.875456
PromotedMB
0.001488
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
7337.3841
DurationMSec
0.9354999999995925
PauseDurationMSec
1.1784999999999854
SuspendDurationMSec
0.12879999999950087
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
91.2441000000008
PauseStartRelativeMSec
7337.1724
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10875456
TotalPromoted1488
Depth1
GenerationSize02895160
TotalPromotedSize0608
GenerationSize1680
TotalPromotedSize1880
GenerationSize26335736
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41535600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount7
GCHandleCount1233
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration1
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated280
FreeListConsumed280
AllocedSinceLastGCMB
15.140287999999998
RatioPeakAfter
2.2723887623654586
AllocRateMBSec
165.93169311769051
HeapSizePeakMB
24.713264
UserAllocated
[ 15.140287999999998, 0, 0, 0, 0 ]
HeapSizeBeforeMB
24.713264
GenSizeBeforeMB
[ 15.299879999999998, 2.9697280000000004, 6.335376000000001, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.2751210201833485
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.87664
PromotedMB
0.001304
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7430.3957
DurationMSec
0.9633000000003449
PauseDurationMSec
1.1518999999998414
SuspendDurationMSec
0.07880000000022847
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
91.91769999999997
PauseStartRelativeMSec
7430.2388
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10876640
TotalPromoted1304
Depth0
GenerationSize02895160
TotalPromotedSize01304
GenerationSize11864
TotalPromotedSize10
GenerationSize26335736
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41535600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount7
GCHandleCount1233
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration0
Gen0ReductionCount9
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
15.306512
RatioPeakAfter
2.0418761676400066
AllocRateMBSec
166.52409709990573
HeapSizePeakMB
22.208752
UserAllocated
[ 15.306512, 0, 0, 0, 0 ]
HeapSizeBeforeMB
22.208752
GenSizeBeforeMB
[ 15.764056, 0.00068, 6.335736000000001, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.2376758898714981
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
10.891696
PromotedMB
0.002792
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7515.4447
DurationMSec
1.2107999999998356
PauseDurationMSec
1.3769000000002052
SuspendDurationMSec
0.05500000000029104
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
83.94880000000012
PauseStartRelativeMSec
7515.3093
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10891696
TotalPromoted2792
Depth0
GenerationSize02895160
TotalPromotedSize02792
GenerationSize14560
TotalPromotedSize10
GenerationSize26335736
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41547960
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount7
GCHandleCount1233
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration0
Gen0ReductionCount10
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
15.118911999999998
RatioPeakAfter
2.036415999858975
AllocRateMBSec
180.09682091941727
HeapSizePeakMB
22.180024
UserAllocated
[ 15.118911999999998, 0, 0, 0, 0 ]
HeapSizeBeforeMB
22.180024
GenSizeBeforeMB
[ 15.734143999999999, 0.0018639999999999998, 6.335736000000001, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.613699037921986
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
16.64704
PromotedMB
0.857632
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7593.6374
DurationMSec
1.480600000000777
PauseDurationMSec
1.6463999999996304
SuspendDurationMSec
0.042599999999765714
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
76.85130000000026
PauseStartRelativeMSec
7593.5082
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize16647040
TotalPromoted857632
Depth0
GenerationSize07818304
TotalPromotedSize0857632
GenerationSize1828520
TotalPromotedSize10
GenerationSize26335736
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41556200
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount10
SinkBlockCount18
GCHandleCount1391
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
14.520384
RatioPeakAfter
1.3108607896659106
AllocRateMBSec
188.9412931206102
HeapSizePeakMB
21.821952
UserAllocated
[ 14.520384, 0, 0, 0, 0 ]
HeapSizeBeforeMB
21.821952
GenSizeBeforeMB
[ 15.373375999999999, 0.00456, 6.335736000000001, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.0973862928463287
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
13.04476
PromotedMB
0.035752
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7674.2119
DurationMSec
1.1123999999999796
PauseDurationMSec
1.2890999999999622
SuspendDurationMSec
0.04629999999997381
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
78.94790000000012
PauseStartRelativeMSec
7674.0673
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13044760
TotalPromoted35752
Depth0
GenerationSize04180624
TotalPromotedSize035752
GenerationSize1863920
TotalPromotedSize10
GenerationSize26335736
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41556200
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount18
GCHandleCount1391
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration0
Gen0ReductionCount18
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
14.144504
RatioPeakAfter
1.6905436359120443
AllocRateMBSec
179.16251097242585
HeapSizePeakMB
22.052736
UserAllocated
[ 14.144504, 0, 0, 0, 0 ]
HeapSizeBeforeMB
22.052736
GenSizeBeforeMB
[ 14.780199999999999, 0.8285199999999999, 6.335736000000001, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.6066154018719057
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.798544
PromotedMB
0.0352
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7770.0045
DurationMSec
1.2587000000003172
PauseDurationMSec
1.4675999999999476
SuspendDurationMSec
0.08799999999973807
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
94.50200000000041
PauseStartRelativeMSec
7769.8278
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11798544
TotalPromoted35200
Depth0
GenerationSize02895160
TotalPromotedSize035200
GenerationSize1899048
TotalPromotedSize10
GenerationSize26335736
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41560320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount18
GCHandleCount1391
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
15.081808
RatioPeakAfter
1.9522558037669735
AllocRateMBSec
159.59247423334887
HeapSizePeakMB
23.033776000000003
UserAllocated
[ 15.081808, 0, 0, 0, 0 ]
HeapSizeBeforeMB
23.033776000000003
GenSizeBeforeMB
[ 15.725840000000002, 0.86392, 6.335736000000001, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.5292342575148195
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.807624
PromotedMB
0.00096
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7862.8809
DurationMSec
1.0951999999997497
PauseDurationMSec
1.2714999999998327
SuspendDurationMSec
0.04960000000028231
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
91.47099999999955
PauseStartRelativeMSec
7862.7356
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11807624
TotalPromoted960
Depth0
GenerationSize02895160
TotalPromotedSize0960
GenerationSize1899888
TotalPromotedSize10
GenerationSize26335736
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41568560
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount18
GCHandleCount1391
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
15.039863999999998
RatioPeakAfter
1.9465511435662246
AllocRateMBSec
164.42221031802507
HeapSizePeakMB
22.984144
UserAllocated
[ 15.039863999999998, 0, 0, 0, 0 ]
HeapSizeBeforeMB
22.984144
GenSizeBeforeMB
[ 15.64108, 0.899048, 6.335736000000001, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.3710003504324781
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.80896
PromotedMB
0.001456
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7955.8079
DurationMSec
1.186800000000403
PauseDurationMSec
1.3872000000001208
SuspendDurationMSec
0.08300000000053842
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
91.66169999999966
PauseStartRelativeMSec
7955.6392
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11808960
TotalPromoted1456
Depth0
GenerationSize02895160
TotalPromotedSize01456
GenerationSize1901224
TotalPromotedSize10
GenerationSize26335736
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41568560
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount18
GCHandleCount1391
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration0
Gen0ReductionCount11
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
15.210744
RatioPeakAfter
1.9600919979405467
AllocRateMBSec
165.94438025914923
HeapSizePeakMB
23.146648
UserAllocated
[ 15.210744, 0, 0, 0, 0 ]
HeapSizeBeforeMB
23.146648
GenSizeBeforeMB
[ 15.802743999999999, 0.8998879999999999, 6.335736000000001, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.4908290157112272
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
11.81108
PromotedMB
0.002216
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
8048.3751
DurationMSec
1.2199000000000524
PauseDurationMSec
1.4203999999999724
SuspendDurationMSec
0.062099999999190914
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
91.21140000000014
PauseStartRelativeMSec
8048.2075
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11811080
TotalPromoted2216
Depth0
GenerationSize02895160
TotalPromotedSize02216
GenerationSize1903344
TotalPromotedSize10
GenerationSize26335736
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41568560
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount18
GCHandleCount1391
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
15.188544
RatioPeakAfter
1.9533292467750623
AllocRateMBSec
166.52023760187845
HeapSizePeakMB
23.070928000000002
UserAllocated
[ 15.188544, 0, 0, 0, 0 ]
HeapSizeBeforeMB
23.070928000000002
GenSizeBeforeMB
[ 15.725688, 0.9012239999999999, 6.335736000000001, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.5333827044276054
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
12.45724
PromotedMB
0.02104
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
8137.1372
DurationMSec
1.3252000000002226
PauseDurationMSec
1.5416999999997643
SuspendDurationMSec
0.09040000000004511
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
87.35910000000058
PauseStartRelativeMSec
8136.9556
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize12457240
TotalPromoted21040
Depth0
GenerationSize03512368
TotalPromotedSize021040
GenerationSize1924056
TotalPromotedSize10
GenerationSize26335736
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41576800
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount19
GCHandleCount1397
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps6
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
14.779896
RatioPeakAfter
1.8199742479072412
AllocRateMBSec
169.1855341916286
HeapSizePeakMB
22.671856000000002
UserAllocated
[ 14.779896, 0, 0, 0, 0 ]
HeapSizeBeforeMB
22.671856000000002
GenSizeBeforeMB
[ 15.324496, 0.9033439999999999, 6.335736000000001, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.7341801198636664
(351 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.4518180592994412
MeanSizeAfterMB
12.689484420485167
MeanSizePeakMB
20.465859428571427
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
371
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
6.928200000000288
TotalPauseTimeMSec
538.6245000000927
MaxSuspendDurationMSec
0.2845999999999549
MaxSizePeakMB
25.085120000000003
MaxAllocRateMBSec
229.26781247802336
TotalAllocatedMB
3811.1489679999972
TotalCpuMSec
0
TotalPromotedMB
51.75443199999995
TotalSizeAfterMB
4707.798719999997
TotalSizePeakMB
7592.833847999999
FinalizedObjects(empty)
ProcessDuration
30310.397399999994
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.4068088642661754
MeanSizeAfterMB
12.670513307479219
MeanSizePeakMB
20.447706216066482
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
361
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
5.4780000000000655
TotalPauseTimeMSec
507.8580000000893
MaxSuspendDurationMSec
0.1754000000000815
MaxSizePeakMB
25.085120000000003
MaxAllocRateMBSec
229.26781247802336
TotalAllocatedMB
3740.1671919999976
TotalCpuMSec
0
TotalPromotedMB
8.105384000000006
TotalSizeAfterMB
4574.055303999998
TotalSizePeakMB
7381.6219439999995
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
3.7363285714288526
MeanSizeAfterMB
12.215364571428571
MeanSizePeakMB
19.67901714285714
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
7
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
6.928200000000288
TotalPauseTimeMSec
26.154300000001967
MaxSuspendDurationMSec
0.12879999999950087
MaxSizePeakMB
24.713264
MaxAllocRateMBSec
188.0896072781065
TotalAllocatedMB
70.98177600000001
TotalCpuMSec
0
TotalPromotedMB
15.479432
TotalSizeAfterMB
85.507552
TotalSizePeakMB
137.75312
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.5374000000004646
MeanSizeAfterMB
16.078621333333334
MeanSizePeakMB
24.486261333333335
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
3
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
1.6694000000006781
TotalPauseTimeMSec
4.612200000001394
MaxSuspendDurationMSec
0.2845999999999549
MaxSizePeakMB
25.085120000000003
MaxAllocRateMBSec
0
TotalAllocatedMB
0
TotalCpuMSec
0
TotalPromotedMB
28.169615999999998
TotalSizeAfterMB
48.235864
TotalSizePeakMB
73.45878400000001
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking(empty)
BGCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
18.935488
PromotedMB
7.374544
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
5
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
6940.4491
DurationMSec
58.58420000000024
PauseDurationMSec
1.6694000000006781
SuspendDurationMSec
0.12190000000009604
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
56.22240000000056
PauseStartRelativeMSec
6940.3205
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.6201000000000931
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize18935488
TotalPromoted7374544
Depth2
GenerationSize07249296
TotalPromotedSize03784
GenerationSize16094592
TotalPromotedSize13282584
GenerationSize23993040
TotalPromotedSize23979928
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize41490280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount5
PinnedObjectCount0
SinkBlockCount4
GCHandleCount1235
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.324767547580501
AllocRateMBSec
0
HeapSizePeakMB
25.085120000000003
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.664656
GenSizeBeforeMB
[ 4.468744, 6.094592, 3.99304, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.252353861761318
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
13.69552
PromotedMB
8.644408
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
8
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
7151.4115
DurationMSec
19.098500000000058
PauseDurationMSec
1.6154999999998836
SuspendDurationMSec
0.2845999999999549
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
17.735099999999875
PauseStartRelativeMSec
7151.2357
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.518699999999626
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13695520
TotalPromoted8644408
Depth2
GenerationSize02483648
TotalPromotedSize01752
GenerationSize13375440
TotalPromotedSize12344024
GenerationSize26200792
TotalPromotedSize26190384
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize41527360
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount4
PinnedObjectCount0
SinkBlockCount7
GCHandleCount1235
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.8290991506711682
AllocRateMBSec
0
HeapSizePeakMB
25.050463999999998
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
9.684032
GenSizeBeforeMB
[ 0.000136, 3.374824, 6.200792, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.7030416241542743
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
15.604856
PromotedMB
12.150664
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
187
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
22185.4731
DurationMSec
11.064300000001822
PauseDurationMSec
1.3273000000008324
SuspendDurationMSec
0.2511000000013155
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
9.751400000001013
PauseStartRelativeMSec
22185.3236
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.2021000000022468
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize15604856
TotalPromoted12150664
Depth2
GenerationSize0831208
TotalPromotedSize01688
GenerationSize11704896
TotalPromotedSize14678184
GenerationSize211379552
TotalPromotedSize27362544
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize41580920
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount4
PinnedObjectCount0
SinkBlockCount19
GCHandleCount1406
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.4946116772881468
AllocRateMBSec
0
HeapSizePeakMB
23.3232
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.276152
GenSizeBeforeMB
[ 1.0846, 1.703568, 11.379704, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.1211991052195187
GCThreadIDsToHeapNumbers(empty)
DurationMSec
38987.3914
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="19241"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpsIISOutOfProc_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 2:13:04 PM"\\r\\n SessionEndTime="8/21/2023 2:13:47 PM"\\r\\n SessionDuration="...
Events
[ <Event MSec= "0.0000" PID="2780" PName="PerfView" TID="3576" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 2:13:44 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="89" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 2:13:04 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="2780" PName="PerfView" TID="3576" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "4.8842" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="2780" PName="PerfView" TID="3576" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "4.8539" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "4.8842" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "4.9030" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "4.9030" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", - "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337152584110.2
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="2780" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="156.3494" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmpBE05.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="42942.3673" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", - "
Count109
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="3576" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337152584110.2" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337152584110.2" /> ... (more) ]
Count1552
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", - "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="102" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1302" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="220" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="28" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="5" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", - " ... (more) ]
Count78
(values)
indexvalue
0\r\n", - "
1\r\n", - "
2\r\n", - "
3\r\n", - "
4\r\n", - "
5\r\n", - "
6\r\n", - "
7\r\n", - "
8\r\n", - "
9\r\n", - "
10\r\n", - "
11\r\n", - "
12\r\n", - "
13\r\n", - "
14\r\n", - "
15\r\n", - "
16\r\n", - "
17\r\n", - "
18\r\n", - "
19\r\n", - "
... (more)
MaxEventIndex19241
EventCount
19241
Size
4549760
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpsIISOutOfProc_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", - "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", - "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", - "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", - "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", - " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", - " at lambda_method760(Closure, TraceLog)\r\n", - " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 14:13:04Z
SessionEndTime2023-08-21 14:13:47Z
SessionEndTimeRelativeMSec
42942.3673
SessionDuration00:00:42.9423673
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [100, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [98, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [102, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [103, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpsIISOutOfProc_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
1GC.Analysis.API.GCProcessData
Benchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\adkpe31d.ocy\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios json --urls https://10.0.0.104:5000 --server IISOutOfProcess --kestrelTransport Sockets --protocol https 
NumberOfHeapCountSwitches
8
Benchmark
JsonHttpsIISOutOfProc
Id
datas_3 | JsonHttpsIISOutOfProc
TotalSuspensionTimeMSec
29.337400000067646
PercentPauseTimeInGC
1.7770288290581526
PercentTimeInGC
1.6802389400543627
MeanHeapSizeBeforeMB
20.465859428571427
MaxHeapSizeMB
25.085120000000003
TotalAllocationsMB
3811.1489679999972
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpsIISOutOfProc_Windows.gc.etl.zip
ProcessName
Benchmarks
datas_3 | JsonHttpSys
Submission#4+LoadInfo
WorkingSetMB
109
PrivateMemoryMB
82
Latency50thMS
0.4
Latency75thMS
0.58
Latency90thMS
0.9
Latency99thMS
7.32
MeanLatencyMS
0.66
ProcessId
11916
RequestsPerMSec
527.835
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
Benchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\t3p51z5f.her\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios json --urls http://10.0.0.104:5000 --server HttpSys --kestrelTransport Sockets --protocol http 
ProcessID
11916
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.619488
PromotedMB
1.220896
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
36555.3799
DurationMSec
5.311500000003434
PauseDurationMSec
5.723600000004808
SuspendDurationMSec
0.12250000000494765
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
36555.02
PauseStartRelativeMSec
36555.02
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4619488
TotalPromoted1220896
Depth0
GenerationSize02598448
TotalPromotedSize01220896
GenerationSize11201160
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize36082
FinalizationPromotedCount104
PinnedObjectCount7
SinkBlockCount3
GCHandleCount598
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
0.5909711206090372
AllocRateMBSec
0
HeapSizePeakMB
2.729984
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.729984
GenSizeBeforeMB
[ 2.621704, 0, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
0.015655042639791405
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
5.236064
PromotedMB
1.583224
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
36564.3907
DurationMSec
4.268799999998009
PauseDurationMSec
4.520100000001548
SuspendDurationMSec
0.19429999999556458
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
3.4769999999989523
PauseStartRelativeMSec
36564.1693
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5236064
TotalPromoted1583224
Depth1
GenerationSize00
TotalPromotedSize0720352
GenerationSize13569720
TotalPromotedSize1862872
GenerationSize2846464
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize1256
FinalizationPromotedCount21
PinnedObjectCount13
SinkBlockCount5
GCHandleCount691
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.387552
RatioPeakAfter
0.7594529020271716
AllocRateMBSec
686.670117917952
HeapSizePeakMB
3.976544
UserAllocated
[ 2.387552, 0, 0, 0, 0 ]
HeapSizeBeforeMB
3.976544
GenSizeBeforeMB
[ 2.667104, 1.20116, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
56.521739130450605
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2N
HeapSizeAfterMB
5.865928
PromotedMB
1.759312
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
36571.7811
DurationMSec
4.383300000001327
PauseDurationMSec
4.501199999998789
SuspendDurationMSec
0.07459999999991851
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
3.0232000000032713
PauseStartRelativeMSec
36571.684
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5865928
TotalPromoted1759312
Depth2
GenerationSize02621000
TotalPromotedSize0470360
GenerationSize1466984
TotalPromotedSize1334504
GenerationSize21958064
TotalPromotedSize2846200
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize608
FinalizationPromotedCount4
PinnedObjectCount37
SinkBlockCount7
GCHandleCount650
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration2
Gen0ReductionCount126524
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.458384
RatioPeakAfter
1.218273391695227
AllocRateMBSec
813.172797035373
HeapSizePeakMB
7.146304
UserAllocated
[ 2.458384, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.146304
GenSizeBeforeMB
[ 2.62184, 3.56972, 0.846464, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
59.821381106766744
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
10.81936
PromotedMB
0.495512
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
36617.2821
DurationMSec
1.5500000000029104
PauseDurationMSec
1.930500000002212
SuspendDurationMSec
0.15989999999874271
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
40.772100000001956
PauseStartRelativeMSec
36616.9375
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10819360
TotalPromoted495512
Depth1
GenerationSize07595112
TotalPromotedSize0443072
GenerationSize1446304
TotalPromotedSize152440
GenerationSize21958064
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount7
GCHandleCount794
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration1
Gen0ReductionCount269539
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated52440
FreeListConsumed52440
AllocedSinceLastGCMB
38.644016
RatioPeakAfter
3.87023483828988
AllocRateMBSec
947.8053865265255
HeapSizePeakMB
41.873464
UserAllocated
[ 38.643984, 0, 0, 3.200000000000425E-05, 0 ]
HeapSizeBeforeMB
41.873464
GenSizeBeforeMB
[ 39.340136, 0.466984, 1.958064, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
4.52080201206021
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
24.244256
PromotedMB
0.44728
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
5
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
36659.1812
DurationMSec
0.936600000000908
PauseDurationMSec
1.2444000000032247
SuspendDurationMSec
0.10859999999956926
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
40.068299999999
PauseStartRelativeMSec
36658.9018
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize24244256
TotalPromoted447280
Depth0
GenerationSize020573312
TotalPromotedSize0447280
GenerationSize1893000
TotalPromotedSize10
GenerationSize21958064
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount17
SinkBlockCount7
GCHandleCount920
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration0
Gen0ReductionCount1036
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
40.53717600000001
RatioPeakAfter
1.8094113508783274
AllocRateMBSec
1011.7019189733785
HeapSizePeakMB
43.86783199999999
UserAllocated
[ 40.53717600000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
43.86783199999999
GenSizeBeforeMB
[ 41.355183999999994, 0.446304, 1.958064, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.012148806548973
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
21.706896
PromotedMB
0.441176
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
36698.1166
DurationMSec
0.9703999999983353
PauseDurationMSec
1.2541000000055647
SuspendDurationMSec
0.06030000000464497
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
37.742499999993015
PauseStartRelativeMSec
36697.8616
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize21706896
TotalPromoted441176
Depth0
GenerationSize017594368
TotalPromotedSize0441176
GenerationSize11334584
TotalPromotedSize10
GenerationSize21958064
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount15
SinkBlockCount7
GCHandleCount988
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration0
Gen0ReductionCount22
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
39.475632000000004
RatioPeakAfter
2.0217505073042226
AllocRateMBSec
1045.919904617005
HeapSizePeakMB
43.885928
UserAllocated
[ 39.475632000000004, 0, 0, 0, 0 ]
HeapSizeBeforeMB
43.885928
GenSizeBeforeMB
[ 40.926584, 0.8929999999999998, 1.958064, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.2159213880328292
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
14.534888
PromotedMB
0.429008
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
36737.1999
DurationMSec
0.8856999999989057
PauseDurationMSec
1.1908000000039465
SuspendDurationMSec
0.07749999999941792
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
37.83679999999731
PauseStartRelativeMSec
36736.9249
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize14534888
TotalPromoted429008
Depth0
GenerationSize09990824
TotalPromotedSize0429008
GenerationSize11766120
TotalPromotedSize10
GenerationSize21958064
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount8
SinkBlockCount7
GCHandleCount1001
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration0
Gen0ReductionCount24
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
38.851392
RatioPeakAfter
3.0081910503885547
AllocRateMBSec
1026.814952638774
HeapSizePeakMB
43.72372
UserAllocated
[ 38.851392, 0, 0, 0, 0 ]
HeapSizeBeforeMB
43.72372
GenSizeBeforeMB
[ 40.322792, 1.334584, 1.958064, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.051174040945147
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
17.703136
PromotedMB
0.45192
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
36777.201
DurationMSec
0.9347999999954482
PauseDurationMSec
1.2220999999990454
SuspendDurationMSec
0.07389999999577412
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
38.851300000002084
PauseStartRelativeMSec
36776.9383
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize17703136
TotalPromoted451920
Depth0
GenerationSize012706920
TotalPromotedSize0451920
GenerationSize12218272
TotalPromotedSize10
GenerationSize21958064
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount13
SinkBlockCount7
GCHandleCount1139
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration0
Gen0ReductionCount22
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
39.699832
RatioPeakAfter
2.510156844527433
AllocRateMBSec
1021.8405046934819
HeapSizePeakMB
44.437648
UserAllocated
[ 39.699832, 0, 0, 0, 0 ]
HeapSizeBeforeMB
44.437648
GenSizeBeforeMB
[ 40.605184, 1.76612, 1.958064, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.0496538851183352
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
15.452768
PromotedMB
0.43216
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
36817.3216
DurationMSec
0.962599999998929
PauseDurationMSec
1.3444999999992433
SuspendDurationMSec
0.15610000000015134
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
38.827500000006694
PauseStartRelativeMSec
36816.9653
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize15452768
TotalPromoted432160
Depth0
GenerationSize010022152
TotalPromotedSize0432160
GenerationSize12652672
TotalPromotedSize10
GenerationSize21958064
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount8
SinkBlockCount7
GCHandleCount982
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration0
Gen0ReductionCount22
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
39.859736
RatioPeakAfter
2.915886137680964
AllocRateMBSec
1026.5851780308576
HeapSizePeakMB
45.05851199999999
UserAllocated
[ 39.859736, 0, 0, 0, 0 ]
HeapSizeBeforeMB
45.05851199999999
GenSizeBeforeMB
[ 40.77389599999999, 2.218272, 1.958064, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.3468585084114424
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
20.886752
PromotedMB
0.452376
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
36854.7744
DurationMSec
0.9675999999963096
PauseDurationMSec
1.34150000000227
SuspendDurationMSec
0.17340000000695
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
36.13869999999588
PauseStartRelativeMSec
36854.4241
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize20886752
TotalPromoted452376
Depth0
GenerationSize015001008
TotalPromotedSize0452376
GenerationSize13107800
TotalPromotedSize10
GenerationSize21958064
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount10
SinkBlockCount7
GCHandleCount1041
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration0
Gen0ReductionCount23
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
39.66256
RatioPeakAfter
2.170065312213215
AllocRateMBSec
1097.5093182655858
HeapSizePeakMB
45.325616
UserAllocated
[ 39.66256, 0, 0, 0, 0 ]
HeapSizeBeforeMB
45.325616
GenSizeBeforeMB
[ 40.60659999999999, 2.6526720000000004, 1.958064, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.579223163169717
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
8.7726
PromotedMB
0.40884
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
36890.8229
DurationMSec
0.8749000000025262
PauseDurationMSec
1.1156999999948312
SuspendDurationMSec
0.015099999996891711
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.85960000000341
PauseStartRelativeMSec
36890.603
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8772600
TotalPromoted408840
Depth0
GenerationSize02474312
TotalPromotedSize0408840
GenerationSize13520344
TotalPromotedSize10
GenerationSize21958064
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount7
GCHandleCount1008
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration0
Gen0ReductionCount25
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
39.59665599999999
RatioPeakAfter
5.198041173654332
AllocRateMBSec
1135.889568440146
HeapSizePeakMB
45.60033599999999
UserAllocated
[ 39.59665599999999, 0, 0, 0, 0 ]
HeapSizeBeforeMB
45.60033599999999
GenSizeBeforeMB
[ 40.42619199999999, 3.1078, 1.958064, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.1012944992672353
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
10.2806
PromotedMB
0.441672
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
36926.2178
DurationMSec
0.8784000000014203
PauseDurationMSec
1.1609000000025844
SuspendDurationMSec
0.04340000000229338
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.25959999999759
PauseStartRelativeMSec
36925.9588
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10280600
TotalPromoted441672
Depth1
GenerationSize07058832
TotalPromotedSize0403424
GenerationSize1405576
TotalPromotedSize138248
GenerationSize21996312
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount7
SinkBlockCount7
GCHandleCount997
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration1
Gen0ReductionCount23
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
38.770488
RatioPeakAfter
4.40650545687995
AllocRateMBSec
1131.6678536819672
HeapSizePeakMB
45.30152000000001
UserAllocated
[ 38.770488, 0, 0, 0, 0 ]
HeapSizeBeforeMB
45.30152000000001
GenSizeBeforeMB
[ 39.71483200000001, 3.520344, 1.958064, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.277480555053087
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
21.291408
PromotedMB
0.432672
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
36962.9056
DurationMSec
0.8798000000024331
PauseDurationMSec
1.2597999999998137
SuspendDurationMSec
0.16040000000066357
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
35.45589999999356
PauseStartRelativeMSec
36962.5534
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize21291408
TotalPromoted432672
Depth0
GenerationSize017636864
TotalPromotedSize0432672
GenerationSize1838352
TotalPromotedSize10
GenerationSize21996312
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount14
SinkBlockCount7
GCHandleCount998
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration0
Gen0ReductionCount24
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
39.679008
RatioPeakAfter
2.0210856886496193
AllocRateMBSec
1119.1087519991654
HeapSizePeakMB
43.03176000000001
UserAllocated
[ 39.679008, 0, 0, 0, 0 ]
HeapSizeBeforeMB
43.03176000000001
GenSizeBeforeMB
[ 40.521592000000005, 0.405576, 1.996312, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.431229691930267
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
24.601048
PromotedMB
0.460512
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
36999.924
DurationMSec
0.8930000000036671
PauseDurationMSec
1.387300000002142
SuspendDurationMSec
0.2895000000062282
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
35.67020000000048
PauseStartRelativeMSec
36999.4569
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize24601048
TotalPromoted460512
Depth0
GenerationSize020487800
TotalPromotedSize0460512
GenerationSize11297056
TotalPromotedSize10
GenerationSize21996312
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount19
SinkBlockCount7
GCHandleCount889
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration0
Gen0ReductionCount23
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
40.019328
RatioPeakAfter
1.7871424014131434
AllocRateMBSec
1121.926089564944
HeapSizePeakMB
43.965576000000006
UserAllocated
[ 40.019328, 0, 0, 0, 0 ]
HeapSizeBeforeMB
43.965576000000006
GenSizeBeforeMB
[ 41.022632, 0.8383519999999999, 1.996312, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.7436416380005233
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
16.335544
PromotedMB
0.443512
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
37035.8787
DurationMSec
0.834499999997206
PauseDurationMSec
1.2279000000053202
SuspendDurationMSec
0.17850000000180444
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.69239999999991
PauseStartRelativeMSec
37035.5108
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize16335544
TotalPromoted443512
Depth0
GenerationSize011777944
TotalPromotedSize0443512
GenerationSize11741408
TotalPromotedSize10
GenerationSize21996312
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount11
SinkBlockCount7
GCHandleCount819
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration0
Gen0ReductionCount23
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
38.471743999999994
RatioPeakAfter
2.652061786249665
AllocRateMBSec
1108.938672446994
HeapSizePeakMB
43.322872
UserAllocated
[ 38.471743999999994, 0, 0, 0, 0 ]
HeapSizeBeforeMB
43.322872
GenSizeBeforeMB
[ 39.921223999999995, 1.297056, 1.996312, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.4184012939901436
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
21.933632
PromotedMB
0.422536
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
37071.9699
DurationMSec
0.8519000000014785
PauseDurationMSec
1.2160000000003492
SuspendDurationMSec
0.13959999999497086
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.9178000000029
PauseStartRelativeMSec
37071.6324
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize21933632
TotalPromoted422536
Depth0
GenerationSize016954288
TotalPromotedSize0422536
GenerationSize12163152
TotalPromotedSize10
GenerationSize21996312
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount16
SinkBlockCount7
GCHandleCount661
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration0
Gen0ReductionCount22
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
38.79732799999999
RatioPeakAfter
1.9808819624583838
AllocRateMBSec
1111.104594218329
HeapSizePeakMB
43.447936000000006
UserAllocated
[ 38.79732799999999, 0, 0, 0, 0 ]
HeapSizeBeforeMB
43.447936000000006
GenSizeBeforeMB
[ 39.601936, 1.7414079999999998, 1.996312, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.3652701902380593
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
20.108728
PromotedMB
0.446456
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
37107.6058
DurationMSec
0.9055000000007567
PauseDurationMSec
1.4426000000021304
SuspendDurationMSec
0.30939999999827705
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.273300000000745
PauseStartRelativeMSec
37107.0965
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize20108728
TotalPromoted446456
Depth0
GenerationSize014682536
TotalPromotedSize0446456
GenerationSize12610000
TotalPromotedSize10
GenerationSize21996312
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount14
SinkBlockCount7
GCHandleCount449
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration0
Gen0ReductionCount23
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
38.600584
RatioPeakAfter
2.1811352761845506
AllocRateMBSec
1126.258165977573
HeapSizePeakMB
43.859856
UserAllocated
[ 38.600584, 0, 0, 0, 0 ]
HeapSizeBeforeMB
43.859856
GenSizeBeforeMB
[ 39.592112, 2.163152, 1.996312, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
4.039097432801677
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
20.892456
PromotedMB
0.4452
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
37143.8429
DurationMSec
0.9160999999949127
PauseDurationMSec
1.360899999999674
SuspendDurationMSec
0.2157999999981257
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.91339999999764
PauseStartRelativeMSec
37143.426
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize20892456
TotalPromoted445200
Depth0
GenerationSize015020192
TotalPromotedSize0445200
GenerationSize13056072
TotalPromotedSize10
GenerationSize21996312
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount13
SinkBlockCount7
GCHandleCount324
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration0
Gen0ReductionCount24
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
39.192448000000006
RatioPeakAfter
2.1508529203076936
AllocRateMBSec
1122.561767115281
HeapSizePeakMB
44.93659999999999
UserAllocated
[ 39.192448000000006, 0, 0, 0, 0 ]
HeapSizeBeforeMB
44.93659999999999
GenSizeBeforeMB
[ 40.22200799999999, 2.6099999999999994, 1.996312, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.751691969244823
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
18.879936
PromotedMB
0.444944
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
37181.4355
DurationMSec
0.9386000000013155
PauseDurationMSec
1.2783999999955995
SuspendDurationMSec
0.11959999999817228
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
36.36540000000241
PauseStartRelativeMSec
37181.1258
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize18879936
TotalPromoted444944
Depth0
GenerationSize012563296
TotalPromotedSize0444944
GenerationSize13500448
TotalPromotedSize10
GenerationSize21996312
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount15
SinkBlockCount7
GCHandleCount497
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration0
Gen0ReductionCount24
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
39.54784800000001
RatioPeakAfter
2.4092958789690817
AllocRateMBSec
1087.5130756157607
HeapSizePeakMB
45.48735200000001
UserAllocated
[ 39.54784800000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
45.48735200000001
GenSizeBeforeMB
[ 40.326688000000004, 3.0560720000000003, 1.996312, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.396043970044648
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
8.124
PromotedMB
0.386416
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
37220.2463
DurationMSec
0.8271000000022468
PauseDurationMSec
1.6278999999994994
SuspendDurationMSec
0.613100000002305
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
6Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
15Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
14Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
12Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
7Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
8Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
9Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
5Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
11Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
13Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
10Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
37.07800000000134
PauseStartRelativeMSec
37219.4537
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
5Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
6Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
7Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
8Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
9Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
10Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
11Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
12Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
13Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
14Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
15Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8124000
TotalPromoted386416
Depth1
GenerationSize04918008
TotalPromotedSize0386384
GenerationSize1389768
TotalPromotedSize132
GenerationSize21996344
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount7
GCHandleCount218
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps16
CondemnedGeneration1
Gen0ReductionCount24
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
39.38440800000001
RatioPeakAfter
5.638238306253077
AllocRateMBSec
1062.204218134705
HeapSizePeakMB
45.805048000000006
UserAllocated
[ 39.38440800000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
45.805048000000006
GenSizeBeforeMB
[ 40.200008000000004, 3.500447999999999, 1.996312, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
4.205818751145082
(1608 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.5192918304667302
MeanSizeAfterMB
16.38210687469287
MeanSizePeakMB
42.857306176904196
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1628
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
16.863100000002305
TotalPauseTimeMSec
2473.4070999998366
MaxSuspendDurationMSec
15.347799999995914
MaxSizePeakMB
47.22876
MaxAllocRateMBSec
2546.688998420913
TotalAllocatedMB
61372.53923200008
TotalCpuMSec
0
TotalPromotedMB
725.2270959999996
TotalSizeAfterMB
26670.069991999993
TotalSizePeakMB
69771.69445600003
FinalizedObjects(empty)
ProcessDuration
30306.2652
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.5377793785309823
MeanSizeAfterMB
16.675004564971733
MeanSizePeakMB
42.68486480790962
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1416
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
16.499799999997776
TotalPauseTimeMSec
2177.495599999871
MaxSuspendDurationMSec
15.347799999995914
MaxSizePeakMB
46.248344
MaxAllocRateMBSec
2546.688998420913
TotalAllocatedMB
53460.43462400003
TotalCpuMSec
0
TotalPromotedMB
658.756648
TotalSizeAfterMB
23611.806463999976
TotalSizePeakMB
60441.76856800002
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.3810914691941556
MeanSizeAfterMB
14.466339336492902
MeanSizePeakMB
44.18378949763032
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
211
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
16.863100000002305
TotalPauseTimeMSec
291.4102999999668
MaxSuspendDurationMSec
15.325900000003458
MaxSizePeakMB
47.22876
MaxAllocRateMBSec
2528.096064394047
TotalAllocatedMB
7909.646223999999
TotalCpuMSec
0
TotalPromotedMB
64.71113600000001
TotalSizeAfterMB
3052.3976000000025
TotalSizePeakMB
9322.779583999998
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
4.501199999998789
MeanSizeAfterMB
5.865928
MeanSizePeakMB
7.146304
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
4.501199999998789
TotalPauseTimeMSec
4.501199999998789
MaxSuspendDurationMSec
0.07459999999991851
MaxSizePeakMB
7.146304
MaxAllocRateMBSec
813.172797035373
TotalAllocatedMB
2.458384
TotalCpuMSec
0
TotalPromotedMB
1.759312
TotalSizeAfterMB
5.865928
TotalSizePeakMB
7.146304
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2N
HeapSizeAfterMB
5.865928
PromotedMB
1.759312
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
36571.7811
DurationMSec
4.383300000001327
PauseDurationMSec
4.501199999998789
SuspendDurationMSec
0.07459999999991851
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
3.0232000000032713
PauseStartRelativeMSec
36571.684
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5865928
TotalPromoted1759312
Depth2
GenerationSize02621000
TotalPromotedSize0470360
GenerationSize1466984
TotalPromotedSize1334504
GenerationSize21958064
TotalPromotedSize2846200
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize4711600
TotalPromotedSize40
FinalizationPromotedSize608
FinalizationPromotedCount4
PinnedObjectCount37
SinkBlockCount7
GCHandleCount650
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration2
Gen0ReductionCount126524
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure23
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.458384
RatioPeakAfter
1.218273391695227
AllocRateMBSec
813.172797035373
HeapSizePeakMB
7.146304
UserAllocated
[ 2.458384, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.146304
GenSizeBeforeMB
[ 2.62184, 3.56972, 0.846464, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
59.821381106766744
BGCs(empty)
GCThreadIDsToHeapNumbers(empty)
DurationMSec
70144.4628
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="230504"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpSys_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 3:37:44 PM"\\r\\n SessionEndTime="8/21/2023 3:38:59 PM"\\r\\n SessionDuration="00:01:15....
Events
[ <Event MSec= "0.0000" PID="7936" PName="PerfView" TID="7348" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 3:38:56 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="597" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 3:37:44 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="7936" PName="PerfView" TID="7348" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "4.8035" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="7936" PName="PerfView" TID="7348" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "4.7722" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "4.8035" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "4.8245" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "4.8245" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", - "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337147504322
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="7936" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="156.566" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmp4156.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="75125.1118" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", - "
Count123
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="7348" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337147504322" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337147504322" /> ... (more) ]
Count1644
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", - "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="119" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1421" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="193" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="27" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="13" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", - " ... (more) ]
Count77
(values)
indexvalue
0\r\n", - "
1\r\n", - "
2\r\n", - "
3\r\n", - "
4\r\n", - "
5\r\n", - "
6\r\n", - "
7\r\n", - "
8\r\n", - "
9\r\n", - "
10\r\n", - "
11\r\n", - "
12\r\n", - "
13\r\n", - "
14\r\n", - "
15\r\n", - "
16\r\n", - "
17\r\n", - "
18\r\n", - "
19\r\n", - "
... (more)
MaxEventIndex230504
EventCount
230504
Size
42371207
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpSys_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", - "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", - "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", - "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", - "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", - " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", - " at lambda_method760(Closure, TraceLog)\r\n", - " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 15:37:44Z
SessionEndTime2023-08-21 15:38:59Z
SessionEndTimeRelativeMSec
75125.1118
SessionDuration00:01:15.1251118
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [117, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [112, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [105, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [110, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [104, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [103, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [102, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [100, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [98, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [114, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [119, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [120, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpSys_Windows.gc.etl.zip
AllGCProcessData
keyvalue
crank-agent
indexvalue
0GC.Analysis.API.GCProcessData
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
1GC.Analysis.API.GCProcessData
Benchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\t3p51z5f.her\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios json --urls http://10.0.0.104:5000 --server HttpSys --kestrelTransport Sockets --protocol http 
NumberOfHeapCountSwitches
1
Benchmark
JsonHttpSys
Id
datas_3 | JsonHttpSys
TotalSuspensionTimeMSec
752.785000000018
PercentPauseTimeInGC
8.161372190459934
PercentTimeInGC
5.677446853463879
MeanHeapSizeBeforeMB
42.857306176904196
MaxHeapSizeMB
47.22876
TotalAllocationsMB
61372.53923200008
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttpSys_Windows.gc.etl.zip
ProcessName
Benchmarks
datas_3 | JsonHttps
Submission#4+LoadInfo
WorkingSetMB
115
PrivateMemoryMB
81
Latency50thMS
0.34
Latency75thMS
0.39
Latency90thMS
0.63
Latency99thMS
15.35
MeanLatencyMS
0.78
ProcessId
7228
RequestsPerMSec
655.672
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
Benchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\3jf0gver.1ny\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios json --urls https://10.0.0.104:5000 --server Kestrel --kestrelTransport Sockets --protocol https 
ProcessID
7228
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.020048
PromotedMB
1.200048
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
31871.4363
DurationMSec
7.643199999998615
PauseDurationMSec
8.01879999999801
SuspendDurationMSec
0.008699999998498242
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
31871.1329
PauseStartRelativeMSec
31871.1329
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4020048
TotalPromoted1200048
Depth0
GenerationSize00
TotalPromotedSize01200048
GenerationSize13711048
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4200720
TotalPromotedSize40
FinalizationPromotedSize30274
FinalizationPromotedCount26
PinnedObjectCount47
SinkBlockCount4
GCHandleCount583
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
0.6811480857940004
AllocRateMBSec
0
HeapSizePeakMB
2.738248
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.738248
GenSizeBeforeMB
[ 2.629968, 0, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
0.025153743347562194
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
8.9504
PromotedMB
3.069584
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
31914.0443
DurationMSec
9.496399999999994
PauseDurationMSec
9.561200000000099
SuspendDurationMSec
0.0067000000017287675
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
34.92949999999837
PauseStartRelativeMSec
31914.0104
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize8950400
TotalPromoted3069584
Depth1
GenerationSize02494664
TotalPromotedSize01908984
GenerationSize14351880
TotalPromotedSize11160600
GenerationSize21127416
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4868160
TotalPromotedSize40
FinalizationPromotedSize568
FinalizationPromotedCount19
PinnedObjectCount80
SinkBlockCount5
GCHandleCount1073
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.140936
RatioPeakAfter
0.7196496245977833
AllocRateMBSec
61.29306173864785
HeapSizePeakMB
6.441152
UserAllocated
[ 2.140936, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.441152
GenSizeBeforeMB
[ 2.621824, 3.711048, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
21.490333934958155
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
9.259216
PromotedMB
2.025296
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
31964.0151
DurationMSec
4.8060999999979686
PauseDurationMSec
4.858099999997648
SuspendDurationMSec
0.008899999997083796
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
40.44590000000244
PauseStartRelativeMSec
31963.9877
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9259216
TotalPromoted2025296
Depth0
GenerationSize00
TotalPromotedSize02025296
GenerationSize17027640
TotalPromotedSize10
GenerationSize21127416
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4995880
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount72
SinkBlockCount5
GCHandleCount1125
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount2000211
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.106448
RatioPeakAfter
0.8924444575005055
AllocRateMBSec
52.080631164095074
HeapSizePeakMB
8.263336
UserAllocated
[ 2.106448, 0, 0, 0, 0 ]
HeapSizeBeforeMB
8.263336
GenSizeBeforeMB
[ 2.67576, 4.35188, 1.127416, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
10.723335687792776
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
15.21764
PromotedMB
6.050264
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
32044.571
DurationMSec
6.872800000001007
PauseDurationMSec
7.032200000001467
SuspendDurationMSec
0.05410000000119908
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
75.63780000000042
PauseStartRelativeMSec
32044.46
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize15217640
TotalPromoted6050264
Depth1
GenerationSize02546008
TotalPromotedSize02587488
GenerationSize16793488
TotalPromotedSize13462776
GenerationSize24390824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41379040
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount46
SinkBlockCount5
GCHandleCount1221
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration1
Gen0ReductionCount107
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.1988959999999995
RatioPeakAfter
1.0329065479272739
AllocRateMBSec
95.17590411143581
HeapSizePeakMB
15.7184
UserAllocated
[ 7.1988639999999995, 0, 0, 3.200000000000425E-05, 0 ]
HeapSizeBeforeMB
15.7184
GenSizeBeforeMB
[ 7.455064, 7.02764, 1.127416, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
8.506350550382614
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
12.866824
PromotedMB
0.0366
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
5
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
32106.4716
DurationMSec
1.8873999999996158
PauseDurationMSec
2.0109000000011292
SuspendDurationMSec
0.05189999999856809
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
54.93340000000171
PauseStartRelativeMSec
32106.3783
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize12866824
TotalPromoted36600
Depth0
GenerationSize0137512
TotalPromotedSize036600
GenerationSize16793488
TotalPromotedSize10
GenerationSize24390824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41436720
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount5
GCHandleCount1221
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount1082
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.68224
RatioPeakAfter
1.4890002381318033
AllocRateMBSec
139.84643222519924
HeapSizePeakMB
19.158704
UserAllocated
[ 7.68224, 0, 0, 0, 0 ]
HeapSizeBeforeMB
19.158704
GenSizeBeforeMB
[ 7.866111999999999, 6.793488, 4.390824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.5313455429270864
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
13.648688
PromotedMB
7.999472
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
6
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
32154.8396
DurationMSec
10.966599999999744
PauseDurationMSec
1.5089000000043598
SuspendDurationMSec
0.15930000000298605
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
8.21190000000206
PauseStartRelativeMSec
32154.7444
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.442300000002433
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13648688
TotalPromoted7999472
Depth2
GenerationSize0894656
TotalPromotedSize039192
GenerationSize16793488
TotalPromotedSize13462776
GenerationSize24390824
TotalPromotedSize24389256
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize41461440
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount5
PinnedObjectCount0
SinkBlockCount6
GCHandleCount1226
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.394228661392216
AllocRateMBSec
0
HeapSizePeakMB
19.029392
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
11.430104
GenSizeBeforeMB
[ 0.137512, 6.793488, 4.390824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
7.6468478881523465
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
12.785152
PromotedMB
0.039192
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
32155.5246
DurationMSec
2.070799999997689
PauseDurationMSec
2.8839999999981956
SuspendDurationMSec
0
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
47.16449999999895
PauseStartRelativeMSec
32155.5246
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize12785152
TotalPromoted39192
Depth0
GenerationSize039360
TotalPromotedSize039192
GenerationSize16793488
TotalPromotedSize10
GenerationSize24390824
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41453200
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount6
SinkBlockCount6
GCHandleCount1227
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount32
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure0
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.720975999999999
RatioPeakAfter
1.4883977914380682
AllocRateMBSec
163.70312417178536
HeapSizePeakMB
19.029392
UserAllocated
[ 7.612696, 0, 0, 0.10828, 0 ]
HeapSizeBeforeMB
19.029392
GenSizeBeforeMB
[ 7.736800000000001, 6.793488, 4.390824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.762410461848726
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
13.426328
PromotedMB
2.7898
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
32205.363
DurationMSec
4.4869999999973516
PauseDurationMSec
4.9354999999995925
SuspendDurationMSec
0.0672999999987951
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
39.13850000000093
PauseStartRelativeMSec
32204.9471
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13426328
TotalPromoted2789800
Depth1
GenerationSize03424
TotalPromotedSize041296
GenerationSize14772968
TotalPromotedSize12748504
GenerationSize27071976
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41469680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount19
SinkBlockCount6
GCHandleCount1227
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration1
Gen0ReductionCount41
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
6.853568
RatioPeakAfter
1.3649551835766265
AllocRateMBSec
175.11064552805644
HeapSizePeakMB
18.326336
UserAllocated
[ 6.8536, 0, 0, -3.2E-05, 0 ]
HeapSizeBeforeMB
18.326336
GenSizeBeforeMB
[ 7.033744, 6.793488, 4.390824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
11.198212097834402
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
14.351536
PromotedMB
9.931472
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
9
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
32255.9905
DurationMSec
10.276000000001659
PauseDurationMSec
1.5364000000008673
SuspendDurationMSec
0.21020000000135042
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
8.183700000001409
PauseStartRelativeMSec
32255.9192
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.4900000000016007
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize14351536
TotalPromoted9931472
Depth2
GenerationSize0924512
TotalPromotedSize05336
GenerationSize14772968
TotalPromotedSize12748504
GenerationSize27071976
TotalPromotedSize27069384
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize41473800
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount5
PinnedObjectCount0
SinkBlockCount5
GCHandleCount1226
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.3768672565779718
AllocRateMBSec
0
HeapSizePeakMB
19.76016
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
11.956648000000001
GenSizeBeforeMB
[ 0.003424, 4.772968, 7.071976, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
7.5779248978575655
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
13.426328
PromotedMB
0.005336
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
32256.0044
DurationMSec
2.079200000000128
PauseDurationMSec
2.7387999999991735
SuspendDurationMSec
0
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
46.153400000002875
PauseStartRelativeMSec
32256.0044
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13426328
TotalPromoted5336
Depth0
GenerationSize03424
TotalPromotedSize05336
GenerationSize14772968
TotalPromotedSize10
GenerationSize27071976
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41469680
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount8
SinkBlockCount7
GCHandleCount1227
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration0
Gen0ReductionCount84
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure0
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.765903999999999
RatioPeakAfter
1.4717471523114882
AllocRateMBSec
168.26287987449493
HeapSizePeakMB
19.76016
UserAllocated
[ 7.657655999999999, 0, 0, 0.108248, 0 ]
HeapSizeBeforeMB
19.76016
GenSizeBeforeMB
[ 7.806936, 4.772968, 7.071975999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.601711520445099
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
11.441744
PromotedMB
0.160344
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
32303.8562
DurationMSec
1.9238000000004831
PauseDurationMSec
2.0791000000026543
SuspendDurationMSec
0.1007000000026892
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
37.46479999999792
PauseStartRelativeMSec
32303.7332
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize11441744
TotalPromoted160344
Depth1
GenerationSize01488008
TotalPromotedSize056880
GenerationSize11291440
TotalPromotedSize1103464
GenerationSize27071976
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41482040
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount12
SinkBlockCount5
GCHandleCount1228
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration1
Gen0ReductionCount43
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
6.5562320000000005
RatioPeakAfter
1.6296921168661
AllocRateMBSec
174.99711729410978
HeapSizePeakMB
18.64652
UserAllocated
[ 6.5562320000000005, 0, 0, 0, 0 ]
HeapSizeBeforeMB
18.64652
GenSizeBeforeMB
[ 6.693295999999999, 4.772968, 7.071975999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
5.257700934916951
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
9.559792
PromotedMB
0.160424
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
32352.626
DurationMSec
1.971799999999348
PauseDurationMSec
2.0855000000010477
SuspendDurationMSec
0.05819999999948777
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
46.76260000000184
PauseStartRelativeMSec
32352.5439
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9559792
TotalPromoted160424
Depth1
GenerationSize057872
TotalPromotedSize056960
GenerationSize1831384
TotalPromotedSize1103464
GenerationSize27071976
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41490280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount12
SinkBlockCount7
GCHandleCount1228
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps3
CondemnedGeneration1
Gen0ReductionCount40
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
7.641024
RatioPeakAfter
1.7059551086467155
AllocRateMBSec
163.40032419069297
HeapSizePeakMB
16.308576000000002
UserAllocated
[ 7.641024, 0, 0, 0, 0 ]
HeapSizeBeforeMB
16.308576000000002
GenSizeBeforeMB
[ 7.836880000000001, 1.29144, 7.071975999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
4.269357457098484
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
9.594816
PromotedMB
0.159816
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
32423.5752
DurationMSec
1.5018999999992957
PauseDurationMSec
1.761000000002241
SuspendDurationMSec
0.12280000000100699
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
68.76499999999942
PauseStartRelativeMSec
32423.3641
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9594816
TotalPromoted159816
Depth1
GenerationSize053112
TotalPromotedSize056352
GenerationSize1801992
TotalPromotedSize1103464
GenerationSize27141152
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41490280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount12
SinkBlockCount9
GCHandleCount1228
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration1
Gen0ReductionCount40
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
11.468383999999999
RatioPeakAfter
2.0539082771363204
AllocRateMBSec
166.7764705882367
HeapSizePeakMB
19.706872
UserAllocated
[ 11.468352, 0, 0, 3.2E-05, 0 ]
HeapSizeBeforeMB
19.706872
GenSizeBeforeMB
[ 11.695232, 0.831384, 7.071975999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.4969514788903378
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
9.627456
PromotedMB
0.090824
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
32501.3043
DurationMSec
1.5050000000010186
PauseDurationMSec
1.6908999999977823
SuspendDurationMSec
0.0878999999986263
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
76.07110000000102
PauseStartRelativeMSec
32501.1496
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9627456
TotalPromoted90824
Depth1
GenerationSize01440
TotalPromotedSize03768
GenerationSize1801064
TotalPromotedSize187056
GenerationSize27226392
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41490280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount9
SinkBlockCount9
GCHandleCount1228
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration1
Gen0ReductionCount21
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.471216
RatioPeakAfter
2.150143090760425
AllocRateMBSec
163.94157571009006
HeapSizePeakMB
20.700408
UserAllocated
[ 12.471216, 0, 0, 0, 0 ]
HeapSizeBeforeMB
20.700408
GenSizeBeforeMB
[ 12.648983999999999, 0.8019919999999999, 7.141151999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.1744553895190557
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
9.516648
PromotedMB
0.005008
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
32578.3109
DurationMSec
1.3315000000002328
PauseDurationMSec
1.4854000000013912
SuspendDurationMSec
0.056599999999889405
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
75.37870000000112
PauseStartRelativeMSec
32578.1895
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9516648
TotalPromoted5008
Depth1
GenerationSize0960
TotalPromotedSize02000
GenerationSize1688944
TotalPromotedSize13008
GenerationSize27228184
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41490280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount5
SinkBlockCount9
GCHandleCount1228
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration1
Gen0ReductionCount19
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated320
FreeListConsumed320
AllocedSinceLastGCMB
12.653528000000001
RatioPeakAfter
2.2014003249883785
AllocRateMBSec
167.8660947986608
HeapSizePeakMB
20.949952000000003
UserAllocated
[ 12.653528000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
20.949952000000003
GenSizeBeforeMB
[ 12.814216000000002, 0.801064, 7.226392000000001, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.932501649016046
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
9.516208
PromotedMB
0.002408
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
32655.6969
DurationMSec
1.0974000000023807
PauseDurationMSec
1.3438999999998487
SuspendDurationMSec
0.14949999999953434
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
75.84089999999924
PauseStartRelativeMSec
32655.4849
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9516208
TotalPromoted2408
Depth1
GenerationSize0687016
TotalPromotedSize01192
GenerationSize11848
TotalPromotedSize11216
GenerationSize27228784
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41490280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount4
SinkBlockCount9
GCHandleCount1228
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration1
Gen0ReductionCount17
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.66216
RatioPeakAfter
2.190188360742009
AllocRateMBSec
166.95687946741307
HeapSizePeakMB
20.842287999999996
UserAllocated
[ 12.66216, 0, 0, 0, 0 ]
HeapSizeBeforeMB
20.842287999999996
GenSizeBeforeMB
[ 12.81688, 0.688944, 7.228183999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.7411459251042491
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
9.525312
PromotedMB
0.00088
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
32731.8849
DurationMSec
1.2093999999997322
PauseDurationMSec
1.389100000000326
SuspendDurationMSec
0.0918999999994412
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
74.94390000000203
PauseStartRelativeMSec
32731.7396
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9525312
TotalPromoted880
Depth0
GenerationSize0687016
TotalPromotedSize0880
GenerationSize12712
TotalPromotedSize10
GenerationSize27228784
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41498520
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount11
GCHandleCount1228
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount14
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.493423999999997
RatioPeakAfter
2.0973330847325524
AllocRateMBSec
166.70368102006512
HeapSizePeakMB
19.977752
UserAllocated
[ 12.493423999999997, 0, 0, 0, 0 ]
HeapSizeBeforeMB
19.977752
GenSizeBeforeMB
[ 12.638839999999998, 0.001848, 7.228783999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.8197896060685197
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
9.525728
PromotedMB
0.000504
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
32813.6952
DurationMSec
1.1028999999980442
PauseDurationMSec
1.3312999999980093
SuspendDurationMSec
0.13190000000031432
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
80.40659999999843
PauseStartRelativeMSec
32813.5023
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9525728
TotalPromoted504
Depth0
GenerationSize0687016
TotalPromotedSize0504
GenerationSize13128
TotalPromotedSize10
GenerationSize27228784
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41498520
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount11
GCHandleCount1228
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount15
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.743768
RatioPeakAfter
2.1241597492601088
AllocRateMBSec
158.49156661269407
HeapSizePeakMB
20.234168
UserAllocated
[ 12.743768, 0, 0, 0, 0 ]
HeapSizeBeforeMB
20.234168
GenSizeBeforeMB
[ 12.894392, 0.002712, 7.228783999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.6287426028783065
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
9.532592
PromotedMB
0.00276
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
32897.4004
DurationMSec
1.5282999999981257
PauseDurationMSec
1.7331000000049244
SuspendDurationMSec
0.104300000006333
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
82.43409999999858
PauseStartRelativeMSec
32897.234
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9532592
TotalPromoted2760
Depth0
GenerationSize0687016
TotalPromotedSize02760
GenerationSize15872
TotalPromotedSize10
GenerationSize27228784
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41502640
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount11
GCHandleCount1228
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.793631999999999
RatioPeakAfter
2.1313531513779256
AllocRateMBSec
155.19829779181455
HeapSizePeakMB
20.317320000000002
UserAllocated
[ 12.793631999999999, 0, 0, 0, 0 ]
HeapSizeBeforeMB
20.317320000000002
GenSizeBeforeMB
[ 12.977128, 0.0031279999999999997, 7.228783999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.0591156650154123
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
9.583176
PromotedMB
0.046384
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
32985.1968
DurationMSec
1.371500000001106
PauseDurationMSec
1.5456000000049244
SuspendDurationMSec
0.05400000000372529
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
4Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
86.12809999999445
PauseStartRelativeMSec
32985.0583
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
4Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9583176
TotalPromoted46384
Depth0
GenerationSize0687016
TotalPromotedSize046384
GenerationSize152336
TotalPromotedSize10
GenerationSize27228784
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41506760
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount11
GCHandleCount1228
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps5
CondemnedGeneration0
Gen0ReductionCount18
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
12.800352
RatioPeakAfter
2.1181754357845457
AllocRateMBSec
148.6199277587782
HeapSizePeakMB
20.298848
UserAllocated
[ 12.800352, 0, 0, 0, 0 ]
HeapSizeBeforeMB
20.298848
GenSizeBeforeMB
[ 12.955912, 0.0058720000000000005, 7.228783999999999, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.7629003908868173
(373 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.5882600508907798
MeanSizeAfterMB
12.975975389312977
MeanSizePeakMB
20.40947024936387
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
393
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
9.561200000000099
TotalPauseTimeMSec
624.1862000000765
MaxSuspendDurationMSec
0.21020000000135042
MaxSizePeakMB
27.241496
MaxAllocRateMBSec
216.9600242883558
TotalAllocatedMB
3689.101360000003
TotalCpuMSec
0
TotalPromotedMB
56.7958799999997
TotalSizeAfterMB
5099.558328
TotalSizePeakMB
8020.921808000001
FinalizedObjects(empty)
ProcessDuration
32603.516
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.5347819628648636
MeanSizeAfterMB
13.006108477453578
MeanSizePeakMB
20.43298943236075
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
377
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
8.01879999999801
TotalPauseTimeMSec
578.6128000000535
MaxSuspendDurationMSec
0.1967000000004191
MaxSizePeakMB
27.241496
MaxAllocRateMBSec
216.9600242883558
TotalAllocatedMB
3560.602120000002
TotalCpuMSec
0
TotalPromotedMB
9.209407999999984
TotalSizeAfterMB
4903.302895999999
TotalSizePeakMB
7703.237016000002
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
3.1908923076933626
MeanSizeAfterMB
11.626289230769231
MeanSizePeakMB
19.35798030769231
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
13
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
9.561200000000099
TotalPauseTimeMSec
41.481600000013714
MaxSuspendDurationMSec
0.14949999999953434
MaxSizePeakMB
26.761592
MaxAllocRateMBSec
175.11064552805644
TotalAllocatedMB
128.49924000000001
TotalCpuMSec
0
TotalPromotedMB
17.523535999999996
TotalSizeAfterMB
151.14176
TotalSizePeakMB
251.65374400000002
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.3639333333364145
MeanSizeAfterMB
15.037890666666668
MeanSizePeakMB
22.010349333333334
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
3
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
1.5364000000008673
TotalPauseTimeMSec
4.091800000009243
MaxSuspendDurationMSec
0.21020000000135042
MaxSizePeakMB
27.241496
MaxAllocRateMBSec
0
TotalAllocatedMB
0
TotalCpuMSec
0
TotalPromotedMB
30.062936
TotalSizeAfterMB
45.113672
TotalSizePeakMB
66.031048
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking(empty)
BGCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
13.648688
PromotedMB
7.999472
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
6
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
32154.8396
DurationMSec
10.966599999999744
PauseDurationMSec
1.5089000000043598
SuspendDurationMSec
0.15930000000298605
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
8.21190000000206
PauseStartRelativeMSec
32154.7444
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.442300000002433
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize13648688
TotalPromoted7999472
Depth2
GenerationSize0894656
TotalPromotedSize039192
GenerationSize16793488
TotalPromotedSize13462776
GenerationSize24390824
TotalPromotedSize24389256
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize41461440
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount5
PinnedObjectCount0
SinkBlockCount6
GCHandleCount1226
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.394228661392216
AllocRateMBSec
0
HeapSizePeakMB
19.029392
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
11.430104
GenSizeBeforeMB
[ 0.137512, 6.793488, 4.390824, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
7.6468478881523465
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
14.351536
PromotedMB
9.931472
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
9
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
32255.9905
DurationMSec
10.276000000001659
PauseDurationMSec
1.5364000000008673
SuspendDurationMSec
0.21020000000135042
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
8.183700000001409
PauseStartRelativeMSec
32255.9192
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.4900000000016007
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize14351536
TotalPromoted9931472
Depth2
GenerationSize0924512
TotalPromotedSize05336
GenerationSize14772968
TotalPromotedSize12748504
GenerationSize27071976
TotalPromotedSize27069384
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize41473800
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount5
PinnedObjectCount0
SinkBlockCount5
GCHandleCount1226
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.3768672565779718
AllocRateMBSec
0
HeapSizePeakMB
19.76016
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
11.956648000000001
GenSizeBeforeMB
[ 0.003424, 4.772968, 7.071976, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
7.5779248978575655
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
17.113448
PromotedMB
12.131992
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
168
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
47542.2109
DurationMSec
10.988100000002305
PauseDurationMSec
1.0465000000040163
SuspendDurationMSec
0.14609999999811407
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
9.432699999997567
PauseStartRelativeMSec
47542.0306
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0.9422000000049593
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize17113448
TotalPromoted12131992
Depth2
GenerationSize01205128
TotalPromotedSize01736
GenerationSize12302512
TotalPromotedSize13739816
GenerationSize211941328
TotalPromotedSize28282192
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize41556200
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount4
PinnedObjectCount0
SinkBlockCount27
GCHandleCount1402
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.5918180836497706
AllocRateMBSec
0
HeapSizePeakMB
27.241496
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.039936
GenSizeBeforeMB
[ 0.687152, 2.302184, 11.94232, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.1817427163716037
GCThreadIDsToHeapNumbers(empty)
DurationMSec
64326.9364
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="19498"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttps_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 3:00:46 PM"\\r\\n SessionEndTime="8/21/2023 3:01:54 PM"\\r\\n SessionDuration="00:01:08.285...
Events
[ <Event MSec= "0.0000" PID="12180" PName="PerfView" TID="12164" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 3:01:52 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="90" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 3:00:46 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="12180" PName="PerfView" TID="12164" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "4.3959" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="12180" PName="PerfView" TID="12164" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "4.3646" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "4.3959" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "4.4152" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "4.4152" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", - "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337149721728
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="12180" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="155.984" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmp6B62.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="68285.7589" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", - "
Count109
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="12164" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337149721728" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337149721728" /> ... (more) ]
Count1644
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", - "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="103" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1342" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="272" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="28" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="5" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", - " ... (more) ]
Count78
(values)
indexvalue
0\r\n", - "
1\r\n", - "
2\r\n", - "
3\r\n", - "
4\r\n", - "
5\r\n", - "
6\r\n", - "
7\r\n", - "
8\r\n", - "
9\r\n", - "
10\r\n", - "
11\r\n", - "
12\r\n", - "
13\r\n", - "
14\r\n", - "
15\r\n", - "
16\r\n", - "
17\r\n", - "
18\r\n", - "
19\r\n", - "
... (more)
MaxEventIndex19498
EventCount
19498
Size
4587904
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttps_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", - "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", - "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", - "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", - "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", - " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", - " at lambda_method760(Closure, TraceLog)\r\n", - " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 15:00:46Z
SessionEndTime2023-08-21 15:01:54Z
SessionEndTimeRelativeMSec
68285.7589
SessionDuration00:01:08.2857589
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [101, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [98, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [103, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [104, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttps_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
1GC.Analysis.API.GCProcessData
Benchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\3jf0gver.1ny\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios json --urls https://10.0.0.104:5000 --server Kestrel --kestrelTransport Sockets --protocol https 
NumberOfHeapCountSwitches
9
Benchmark
JsonHttps
Id
datas_3 | JsonHttps
TotalSuspensionTimeMSec
31.258800000076008
PercentPauseTimeInGC
1.9144751136658895
PercentTimeInGC
1.8185995645377646
MeanHeapSizeBeforeMB
20.40947024936387
MaxHeapSizeMB
27.241496
TotalAllocationsMB
3689.101360000003
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonHttps_Windows.gc.etl.zip
ProcessName
Benchmarks
datas_3 | JsonIISInProc
Submission#4+LoadInfo
WorkingSetMB
82
PrivateMemoryMB
53
Latency50thMS
0.21
Latency75thMS
0.39
Latency90thMS
0.56
Latency99thMS
1.86
MeanLatencyMS
0.34
ProcessId
9632
RequestsPerMSec
894.497
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
Benchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\eeko31yi.eey\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios json --urls http://10.0.0.104:5000 --server IISInProcess --kestrelTransport Sockets --protocol http 
ProcessID
9632
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
2.920032
PromotedMB
1.244464
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
29646.8005
DurationMSec
4.763499999997293
PauseDurationMSec
5.12749999999869
SuspendDurationMSec
0.05789999999979045
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
29646.4946
PauseStartRelativeMSec
29646.4946
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize2920032
TotalPromoted1244464
Depth0
GenerationSize01349152
TotalPromotedSize01244464
GenerationSize11257760
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4204840
TotalPromotedSize40
FinalizationPromotedSize30682
FinalizationPromotedCount29
PinnedObjectCount3
SinkBlockCount3
GCHandleCount545
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
0.9349130420488543
AllocRateMBSec
0
HeapSizePeakMB
2.729976
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.729976
GenSizeBeforeMB
[ 2.621696, 0, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
0.017292477230103003
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
4.23984
PromotedMB
2.219976
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
29666.2549
DurationMSec
6.56420000000071
PauseDurationMSec
6.77009999999791
SuspendDurationMSec
0.14919999999983702
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
14.51510000000053
PauseStartRelativeMSec
29666.0803
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4239840
TotalPromoted2219976
Depth1
GenerationSize01349152
TotalPromotedSize01013712
GenerationSize11021104
TotalPromotedSize11206264
GenerationSize21206264
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4555040
TotalPromotedSize40
FinalizationPromotedSize1256
FinalizationPromotedCount21
PinnedObjectCount2
SinkBlockCount6
GCHandleCount790
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.398136
RatioPeakAfter
0.9405468130872864
AllocRateMBSec
165.2166364682236
HeapSizePeakMB
3.9877680000000004
UserAllocated
[ 2.398136, 0, 0, 0, 0 ]
HeapSizeBeforeMB
3.9877680000000004
GenSizeBeforeMB
[ 2.621728, 1.25776, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
31.806607407956733
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.332552
PromotedMB
0.73984
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
29687.7233
DurationMSec
4.233099999997648
PauseDurationMSec
4.404199999997218
SuspendDurationMSec
0.12409999999727006
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
14.762900000001537
PauseStartRelativeMSec
29687.5829
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5332552
TotalPromoted739840
Depth0
GenerationSize01349152
TotalPromotedSize0739840
GenerationSize11767736
TotalPromotedSize10
GenerationSize21206264
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4901120
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount6
GCHandleCount933
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount5305
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.506088
RatioPeakAfter
0.9296411924346917
AllocRateMBSec
169.75580678591194
HeapSizePeakMB
4.9573599999999995
UserAllocated
[ 2.506088, 0, 0, 0, 0 ]
HeapSizeBeforeMB
4.9573599999999995
GenSizeBeforeMB
[ 2.621712, 1.021104, 1.206264, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
22.97791528190234
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
6.255184
PromotedMB
2.36308
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
29764.519
DurationMSec
5.4438999999983935
PauseDurationMSec
5.8663999999989755
SuspendDurationMSec
0.30309999999735737
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
72.18940000000293
PauseStartRelativeMSec
29764.1467
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6255184
TotalPromoted2363080
Depth1
GenerationSize01349152
TotalPromotedSize0661808
GenerationSize1667736
TotalPromotedSize11701272
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41222480
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount8
GCHandleCount1071
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration1
Gen0ReductionCount227
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.612015999999999
RatioPeakAfter
2.0531501551353246
AllocRateMBSec
133.14996384510204
HeapSizePeakMB
12.842832000000001
UserAllocated
[ 9.611984, 0, 0, 3.200000000000425E-05, 0 ]
HeapSizeBeforeMB
12.842832000000001
GenSizeBeforeMB
[ 9.760552, 1.767736, 1.206264, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
7.515649061311052
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.275976
PromotedMB
0.000504
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
5
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
29845.3579
DurationMSec
1.0002999999996973
PauseDurationMSec
1.186600000000908
SuspendDurationMSec
0.08499999999912689
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
75.2397000000019
PauseStartRelativeMSec
29845.2036
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6275976
TotalPromoted504
Depth0
GenerationSize01349344
TotalPromotedSize0504
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41243080
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount12
GCHandleCount1071
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount69
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.996687999999999
RatioPeakAfter
2.2014819687009637
AllocRateMBSec
132.86453826902215
HeapSizePeakMB
13.816448
UserAllocated
[ 9.996687999999999, 0, 0, 0, 0 ]
HeapSizeBeforeMB
13.816448
GenSizeBeforeMB
[ 10.132895999999999, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.5526068905610562
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.28656
PromotedMB
0.00324
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
29913.7124
DurationMSec
0.9406999999991967
PauseDurationMSec
1.2448999999978696
SuspendDurationMSec
0.2180999999982305
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
67.07760000000053
PauseStartRelativeMSec
29913.4369
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6286560
TotalPromoted3240
Depth0
GenerationSize01351688
TotalPromotedSize03240
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount13
GCHandleCount1071
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.128072
RatioPeakAfter
2.219883688376473
AllocRateMBSec
150.99037532648634
HeapSizePeakMB
13.955432
UserAllocated
[ 10.128072, 0, 0, 0, 0 ]
HeapSizeBeforeMB
13.955432
GenSizeBeforeMB
[ 10.27188, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.8220937465665026
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.286584
PromotedMB
0.007976
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
29973.801
DurationMSec
0.9004999999997381
PauseDurationMSec
1.1296000000002095
SuspendDurationMSec
0.1316999999980908
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
58.95809999999983
PauseStartRelativeMSec
29973.6126
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6286584
TotalPromoted7976
Depth0
GenerationSize01351712
TotalPromotedSize07976
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount15
GCHandleCount1071
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.059096
RatioPeakAfter
2.2113300323355256
AllocRateMBSec
170.61431762556848
HeapSizePeakMB
13.901712
UserAllocated
[ 10.059096, 0, 0, 0, 0 ]
HeapSizeBeforeMB
13.901712
GenSizeBeforeMB
[ 10.21816, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.8799188519450882
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.286912
PromotedMB
0.008304
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
30033.2426
DurationMSec
0.8452999999972235
PauseDurationMSec
1.1617999999980384
SuspendDurationMSec
0.22639999999955762
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
58.252700000000914
PauseStartRelativeMSec
30032.9553
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6286912
TotalPromoted8304
Depth0
GenerationSize01352040
TotalPromotedSize08304
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount17
GCHandleCount1071
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount14
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.960367999999999
RatioPeakAfter
2.1948237863039917
AllocRateMBSec
170.98551655116145
HeapSizePeakMB
13.798664
UserAllocated
[ 9.960367999999999, 0, 0, 0, 0 ]
HeapSizeBeforeMB
13.798664
GenSizeBeforeMB
[ 10.115112, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.9554149239631047
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.287184
PromotedMB
0.008544
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
30093.2882
DurationMSec
0.8966000000000349
PauseDurationMSec
1.2165999999997439
SuspendDurationMSec
0.2294999999976426
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
58.907500000001164
PauseStartRelativeMSec
30092.9965
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6287184
TotalPromoted8544
Depth0
GenerationSize01352312
TotalPromotedSize08544
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount19
GCHandleCount1071
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.084
RatioPeakAfter
2.2125021313198405
AllocRateMBSec
171.18363536051947
HeapSizePeakMB
13.910408
UserAllocated
[ 10.084, 0, 0, 0, 0 ]
HeapSizeBeforeMB
13.910408
GenSizeBeforeMB
[ 10.226856, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.023481432569844
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.2864
PromotedMB
0.007784
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
30152.6083
DurationMSec
0.8290000000015425
PauseDurationMSec
1.103899999998248
SuspendDurationMSec
0.1841999999996915
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
58.17689999999857
PauseStartRelativeMSec
30152.3629
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6286400
TotalPromoted7784
Depth0
GenerationSize01351528
TotalPromotedSize07784
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount22
GCHandleCount1071
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount14
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.961944
RatioPeakAfter
2.194490964622041
AllocRateMBSec
171.23538724133198
HeapSizePeakMB
13.795448
UserAllocated
[ 9.961944, 0, 0, 0, 0 ]
HeapSizeBeforeMB
13.795448
GenSizeBeforeMB
[ 10.111896, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.8621543568884145
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.2864
PromotedMB
0.007816
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
30212.0517
DurationMSec
0.867099999999482
PauseDurationMSec
1.1126000000003842
SuspendDurationMSec
0.15160000000105356
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
58.39760000000024
PauseStartRelativeMSec
30211.836
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6286400
TotalPromoted7816
Depth0
GenerationSize01351528
TotalPromotedSize07816
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount26
GCHandleCount1071
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.960344000000001
RatioPeakAfter
2.195946805803003
AllocRateMBSec
170.5608449662308
HeapSizePeakMB
13.8046
UserAllocated
[ 9.960344000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
13.8046
GenSizeBeforeMB
[ 10.121048, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.8695954643075852
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.325704
PromotedMB
0.066616
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
30271.4767
DurationMSec
0.9053999999996449
PauseDurationMSec
1.2524000000012165
SuspendDurationMSec
0.2628000000004249
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
58.23749999999927
PauseStartRelativeMSec
30271.1574
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6325704
TotalPromoted66616
Depth0
GenerationSize01390832
TotalPromotedSize066616
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount26
GCHandleCount1086
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount14
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.981024
RatioPeakAfter
2.1878241536436103
AllocRateMBSec
171.3848293625263
HeapSizePeakMB
13.839528
UserAllocated
[ 9.981024, 0, 0, 0, 0 ]
HeapSizeBeforeMB
13.839528
GenSizeBeforeMB
[ 10.155975999999999, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.105231308173667
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.433048
PromotedMB
0.221368
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
30331.2741
DurationMSec
0.9805000000014843
PauseDurationMSec
1.239400000002206
SuspendDurationMSec
0.15430000000196742
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
58.67919999999867
PauseStartRelativeMSec
30331.0624
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6433048
TotalPromoted221368
Depth0
GenerationSize01498176
TotalPromotedSize0221368
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount34
GCHandleCount1129
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount14
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.117816000000001
RatioPeakAfter
2.189960342282539
AllocRateMBSec
172.42593627725378
HeapSizePeakMB
14.088120000000002
UserAllocated
[ 10.117816000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.088120000000002
GenSizeBeforeMB
[ 10.404568000000001, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.0684728948977242
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.450368
PromotedMB
0.238912
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
30395.413
DurationMSec
1.073499999998603
PauseDurationMSec
1.4263000000028114
SuspendDurationMSec
0.2187000000012631
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
62.87999999999738
PauseStartRelativeMSec
30395.1357
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6450368
TotalPromoted238912
Depth0
GenerationSize01515496
TotalPromotedSize0238912
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount36
GCHandleCount1134
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount16
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.892592
RatioPeakAfter
2.1691140722513818
AllocRateMBSec
157.32493638677502
HeapSizePeakMB
13.991584000000001
UserAllocated
[ 9.892592, 0, 0, 0, 0 ]
HeapSizeBeforeMB
13.991584000000001
GenSizeBeforeMB
[ 10.308032, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.217978642843403
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.560112
PromotedMB
0.348672
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
30457.6735
DurationMSec
1.0835000000006403
PauseDurationMSec
1.3598000000019965
SuspendDurationMSec
0.18189999999958673
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
60.948199999998906
PauseStartRelativeMSec
30457.4358
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6560112
TotalPromoted348672
Depth0
GenerationSize01625240
TotalPromotedSize0348672
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount41
GCHandleCount1164
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount16
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.773392000000001
RatioPeakAfter
2.124553971029763
AllocRateMBSec
160.355711899616
HeapSizePeakMB
13.937312
UserAllocated
[ 9.773392000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
13.937312
GenSizeBeforeMB
[ 10.25376, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.1823842845252246
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.577824
PromotedMB
0.366152
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
30522.8181
DurationMSec
1.0326999999997497
PauseDurationMSec
1.4517000000014377
SuspendDurationMSec
0.29609999999956926
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
63.70750000000044
PauseStartRelativeMSec
30522.4656
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6577824
TotalPromoted366152
Depth0
GenerationSize01642952
TotalPromotedSize0366152
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount44
GCHandleCount1166
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount17
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.022288
RatioPeakAfter
2.164887354845615
AllocRateMBSec
157.3172389436084
HeapSizePeakMB
14.240248000000001
UserAllocated
[ 10.022288, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.240248000000001
GenSizeBeforeMB
[ 10.556696, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.2279279058082295
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.577392
PromotedMB
0.36572
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
30586.034
DurationMSec
1.0489999999990687
PauseDurationMSec
1.3566999999966356
SuspendDurationMSec
0.21019999999771244
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
61.91560000000027
PauseStartRelativeMSec
30585.7675
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6577392
TotalPromoted365720
Depth0
GenerationSize01642520
TotalPromotedSize0365720
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount47
GCHandleCount1166
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount15
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.558752
RatioPeakAfter
2.1009117291473585
AllocRateMBSec
154.38358022856855
HeapSizePeakMB
13.818520000000001
UserAllocated
[ 9.558752, 0, 0, 0, 0 ]
HeapSizeBeforeMB
13.818520000000001
GenSizeBeforeMB
[ 10.134968, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.14422424978498
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.577848
PromotedMB
0.366176
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
30648.3704
DurationMSec
0.9919000000008964
PauseDurationMSec
1.3431000000018685
SuspendDurationMSec
0.2617000000027474
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
60.96600000000035
PauseStartRelativeMSec
30648.0503
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6577848
TotalPromoted366176
Depth0
GenerationSize01642976
TotalPromotedSize0366176
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount51
GCHandleCount1166
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount16
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.20816
RatioPeakAfter
2.202024735141341
AllocRateMBSec
167.44021257750126
HeapSizePeakMB
14.484584
UserAllocated
[ 10.20816, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.484584
GenSizeBeforeMB
[ 10.801032, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.1555438932705187
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.578032
PromotedMB
0.366392
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
30703.6315
DurationMSec
1.0090000000018335
PauseDurationMSec
1.3411999999989348
SuspendDurationMSec
0.23999999999796273
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
53.96510000000126
PauseStartRelativeMSec
30703.3289
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6578032
TotalPromoted366392
Depth0
GenerationSize01643160
TotalPromotedSize0366392
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount56
GCHandleCount1166
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount15
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.378112
RatioPeakAfter
2.0646503391895936
AllocRateMBSec
173.78105479281575
HeapSizePeakMB
13.581336
UserAllocated
[ 9.378112, 0, 0, 0, 0 ]
HeapSizeBeforeMB
13.581336
GenSizeBeforeMB
[ 9.897784, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.425040185293412
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.577848
PromotedMB
0.366176
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
30761.3308
DurationMSec
1.0051999999996042
PauseDurationMSec
1.265000000003056
SuspendDurationMSec
0.16440000000147847
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
56.46059999999852
PauseStartRelativeMSec
30761.1023
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6577848
TotalPromoted366176
Depth0
GenerationSize01642976
TotalPromotedSize0366176
GenerationSize1667736
TotalPromotedSize10
GenerationSize22907536
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount62
GCHandleCount1166
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount17
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.914456000000001
RatioPeakAfter
2.14329428104754
AllocRateMBSec
175.59955083722562
HeapSizePeakMB
14.098264
UserAllocated
[ 9.914456000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.098264
GenSizeBeforeMB
[ 10.414712, 0.667736, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.1914020815773614
(473 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.222146450304006
MeanSizeAfterMB
6.7439634888438205
MeanSizePeakMB
14.872232746450308
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
493
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
6.77009999999791
TotalPauseTimeMSec
602.5181999998749
MaxSuspendDurationMSec
0.30309999999735737
MaxSizePeakMB
16.97152
MaxAllocRateMBSec
233.26692434194842
TotalAllocatedMB
4803.277272000001
TotalCpuMSec
0
TotalPromotedMB
212.6800239999996
TotalSizeAfterMB
3324.7740000000035
TotalSizePeakMB
7332.010744000002
FinalizedObjects(empty)
ProcessDuration
30354.038299999997
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.180338645418049
MeanSizeAfterMB
6.5804713944223145
MeanSizePeakMB
14.098847745019928
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
251
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
5.12749999999869
TotalPauseTimeMSec
296.2649999999303
MaxSuspendDurationMSec
0.29609999999956926
MaxSizePeakMB
16.97152
MaxAllocRateMBSec
221.65505160474316
TotalAllocatedMB
2452.2823920000005
TotalCpuMSec
0
TotalPromotedMB
103.77028800000004
TotalSizeAfterMB
1651.6983200000009
TotalSizePeakMB
3538.810784000002
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.2670616666664651
MeanSizeAfterMB
6.895082666666668
MeanSizePeakMB
15.66802226666667
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
240
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
6.77009999999791
TotalPauseTimeMSec
304.09479999995165
MaxSuspendDurationMSec
0.30309999999735737
MaxSizePeakMB
16.125256
MaxAllocRateMBSec
233.26692434194842
TotalAllocatedMB
2350.994880000002
TotalCpuMSec
0
TotalPromotedMB
99.41885600000006
TotalSizeAfterMB
1654.8198400000003
TotalSizePeakMB
3760.3253440000008
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.07919999999649
MeanSizeAfterMB
9.12792
MeanSizePeakMB
16.437308
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
2
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
1.193199999994249
TotalPauseTimeMSec
2.15839999999298
MaxSuspendDurationMSec
0.20569999999861466
MaxSizePeakMB
16.97152
MaxAllocRateMBSec
0
TotalAllocatedMB
0
TotalCpuMSec
0
TotalPromotedMB
9.49088
TotalSizeAfterMB
18.25584
TotalSizePeakMB
32.874616
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking(empty)
BGCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
10.373816
PromotedMB
3.4708
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
252
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
45005.3079
DurationMSec
29.666700000001583
PauseDurationMSec
1.193199999994249
SuspendDurationMSec
0.17589999999472639
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
27.570700000003853
PauseStartRelativeMSec
45005.1302
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.0795999999972992
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize10373816
TotalPromoted3470800
Depth2
GenerationSize02770712
TotalPromotedSize0349840
GenerationSize13342608
TotalPromotedSize11701272
GenerationSize22900896
TotalPromotedSize21311440
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount5
PinnedObjectCount0
SinkBlockCount64
GCHandleCount1174
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.6359958572621687
AllocRateMBSec
0
HeapSizePeakMB
16.97152
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
6.7111279999999995
GenSizeBeforeMB
[ 0.352704, 3.342608, 2.907536, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.1442719272226687
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
7.882024
PromotedMB
6.02008
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
255
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
45142.9609
DurationMSec
12.534599999999045
PauseDurationMSec
0.9651999999987311
SuspendDurationMSec
0.20569999999861466
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
11.814600000005157
PauseStartRelativeMSec
45142.786
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0.8488999999972293
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize7882024
TotalPromoted6020080
Depth2
GenerationSize01012136
TotalPromotedSize0840
GenerationSize1904168
TotalPromotedSize12300144
GenerationSize24606120
TotalPromotedSize23610848
GenerationSize3108280
TotalPromotedSize3108248
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount4
PinnedObjectCount0
SinkBlockCount85
GCHandleCount1174
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
2.0176411540995054
AllocRateMBSec
0
HeapSizePeakMB
15.903096000000001
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
5.61844
GenSizeBeforeMB
[ 0.000584, 0.903456, 4.60612, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.7123854371490395
GCThreadIDsToHeapNumbers(empty)
DurationMSec
62493.165100000006
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="23659"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonIISInProc_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 3:24:53 PM"\\r\\n SessionEndTime="8/21/2023 3:26:00 PM"\\r\\n SessionDuration="00:01:06...
Events
[ <Event MSec= "0.0000" PID="2040" PName="PerfView" TID="6244" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 3:25:57 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="100" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 3:24:53 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="2040" PName="PerfView" TID="6244" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "11.4566" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="2040" PName="PerfView" TID="6244" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "11.4254" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "11.4566" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "11.4767" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "11.4767" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", - "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337148274456.8
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="2040" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="155.8467" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmp80E8.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="66543.1852" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", - "
Count105
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="6244" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337148274456.8" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337148274456.8" /> ... (more) ]
Count1391
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", - "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="100" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1194" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="167" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="28" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", - " ... (more) ]
Count78
(values)
indexvalue
0\r\n", - "
1\r\n", - "
2\r\n", - "
3\r\n", - "
4\r\n", - "
5\r\n", - "
6\r\n", - "
7\r\n", - "
8\r\n", - "
9\r\n", - "
10\r\n", - "
11\r\n", - "
12\r\n", - "
13\r\n", - "
14\r\n", - "
15\r\n", - "
16\r\n", - "
17\r\n", - "
18\r\n", - "
19\r\n", - "
... (more)
MaxEventIndex23659
EventCount
23659
Size
5263031
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonIISInProc_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", - "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", - "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", - "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", - "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", - " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", - " at lambda_method760(Closure, TraceLog)\r\n", - " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 15:24:53Z
SessionEndTime2023-08-21 15:26:00Z
SessionEndTimeRelativeMSec
66543.1852
SessionDuration00:01:06.5431852
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [98, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [100, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [101, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonIISInProc_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
Benchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\eeko31yi.eey\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios json --urls http://10.0.0.104:5000 --server IISInProcess --kestrelTransport Sockets --protocol http 
NumberOfHeapCountSwitches
5
Benchmark
JsonIISInProc
Id
datas_3 | JsonIISInProc
TotalSuspensionTimeMSec
52.264599999896745
PercentPauseTimeInGC
1.984968833619331
PercentTimeInGC
1.8127854836368782
MeanHeapSizeBeforeMB
14.872232746450308
MaxHeapSizeMB
16.97152
TotalAllocationsMB
4803.277272000001
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonIISInProc_Windows.gc.etl.zip
ProcessName
Benchmarks
datas_3 | JsonIISOutOfProc
Submission#4+LoadInfo
WorkingSetMB
83
PrivateMemoryMB
54
Latency50thMS
0.21
Latency75thMS
0.4
Latency90thMS
0.58
Latency99thMS
1.89
MeanLatencyMS
0.34
ProcessId
10428
RequestsPerMSec
883.992
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
Benchmarks
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\f03xukje.qjb\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios json --urls http://10.0.0.104:5000 --server IISOutOfProcess --kestrelTransport Sockets --protocol http 
ProcessID
10428
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
2.974296
PromotedMB
1.253608
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
27480.5449
DurationMSec
4.910799999997835
PauseDurationMSec
5.284299999999348
SuspendDurationMSec
0.1430000000000291
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
27480.229
PauseStartRelativeMSec
27480.229
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize2974296
TotalPromoted1253608
Depth0
GenerationSize01381792
TotalPromotedSize01253608
GenerationSize11267024
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4217200
TotalPromotedSize40
FinalizationPromotedSize30682
FinalizationPromotedCount29
PinnedObjectCount2
SinkBlockCount4
GCHandleCount549
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
0.9178857786851075
AllocRateMBSec
0
HeapSizePeakMB
2.730064
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.730064
GenSizeBeforeMB
[ 2.621784, 0, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
0.019225764286524526
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
4.309384
PromotedMB
2.252448
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
27499.7588
DurationMSec
5.731999999999971
PauseDurationMSec
5.966000000000349
SuspendDurationMSec
0.1772000000019034
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
14.099099999999453
PauseStartRelativeMSec
27499.5559
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4309384
TotalPromoted2252448
Depth1
GenerationSize01381792
TotalPromotedSize01037688
GenerationSize11045392
TotalPromotedSize11214760
GenerationSize21214760
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4559160
TotalPromotedSize40
FinalizationPromotedSize1256
FinalizationPromotedCount21
PinnedObjectCount2
SinkBlockCount4
GCHandleCount793
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.406216
RatioPeakAfter
0.927521891759936
AllocRateMBSec
170.6645105006769
HeapSizePeakMB
3.997048
UserAllocated
[ 2.406216, 0, 0, 0, 0 ]
HeapSizeBeforeMB
3.997048
GenSizeBeforeMB
[ 2.621744, 1.267024, 0, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
29.73321837419404
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
3.55736
PromotedMB
0.415328
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
27523.1981
DurationMSec
3.270300000000134
PauseDurationMSec
3.514599999998609
SuspendDurationMSec
0.19529999999940628
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
17.494800000000396
PauseStartRelativeMSec
27522.9866
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3557360
TotalPromoted415328
Depth0
GenerationSize0584
TotalPromotedSize0415328
GenerationSize11464456
TotalPromotedSize10
GenerationSize21214760
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize4769280
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount7
GCHandleCount864
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount281
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.468064
RatioPeakAfter
1.4027750916409922
AllocRateMBSec
141.07414774675584
HeapSizePeakMB
4.990176
UserAllocated
[ 2.468064, 0, 0, 0, 0 ]
HeapSizeBeforeMB
4.990176
GenSizeBeforeMB
[ 2.621744, 1.045392, 1.21476, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
16.728702390352773
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
5.668
PromotedMB
2.354136
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
27594.6988
DurationMSec
4.927500000001601
PauseDurationMSec
5.28859999999986
SuspendDurationMSec
0.24730000000272412
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
67.91429999999673
PauseStartRelativeMSec
27594.3837
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5668000
TotalPromoted2354136
Depth1
GenerationSize0584
TotalPromotedSize0950592
GenerationSize11726728
TotalPromotedSize11403544
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41214240
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount7
GCHandleCount1072
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration1
Gen0ReductionCount160
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.453496
RatioPeakAfter
2.1891587861679604
AllocRateMBSec
139.19742970185152
HeapSizePeakMB
12.408152000000001
UserAllocated
[ 9.453464, 0, 0, 3.200000000000425E-05, 0 ]
HeapSizeBeforeMB
12.408152000000001
GenSizeBeforeMB
[ 9.620656, 1.464456, 1.21476, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
7.224577168391016
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.69308
PromotedMB
0.000648
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
5
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
27679.5037
DurationMSec
0.9609999999993306
PauseDurationMSec
1.1692999999977474
SuspendDurationMSec
0.11449999999967986
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
79.70100000000093
PauseStartRelativeMSec
27679.3283
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5693080
TotalPromoted648
Depth0
GenerationSize0944
TotalPromotedSize0648
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41238960
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount12
GCHandleCount1072
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount67
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.976512
RatioPeakAfter
2.5610418262170915
AllocRateMBSec
125.17423871720408
HeapSizePeakMB
14.580216
UserAllocated
[ 9.976512, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.580216
GenSizeBeforeMB
[ 10.12704, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.445895464710489
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.705568
PromotedMB
0.00068
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
27759.3095
DurationMSec
0.7593000000015309
PauseDurationMSec
1.0614999999997963
SuspendDurationMSec
0.21310000000084983
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
78.5727999999981
PauseStartRelativeMSec
27759.0386
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5705568
TotalPromoted680
Depth0
GenerationSize01072
TotalPromotedSize0680
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount12
GCHandleCount1072
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount11
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.15028
RatioPeakAfter
2.5850944200472235
AllocRateMBSec
129.18312698542303
HeapSizePeakMB
14.749431999999999
UserAllocated
[ 10.15028, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.749431999999999
GenSizeBeforeMB
[ 10.296256, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.3329683314850815
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.708096
PromotedMB
0.003184
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
27826.577
DurationMSec
0.8967999999986205
PauseDurationMSec
1.1781999999984691
SuspendDurationMSec
0.1908000000003085
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
66.25890000000072
PauseStartRelativeMSec
27826.3289
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5708096
TotalPromoted3184
Depth0
GenerationSize03600
TotalPromotedSize03184
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount14
GCHandleCount1072
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount9
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.938784
RatioPeakAfter
2.5482038143717274
AllocRateMBSec
149.9992302920799
HeapSizePeakMB
14.545392
UserAllocated
[ 9.938784, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.545392
GenSizeBeforeMB
[ 10.092216, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.7471095287289686
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.70768
PromotedMB
0.002768
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
27889.9803
DurationMSec
0.8942000000024564
PauseDurationMSec
1.1985999999997148
SuspendDurationMSec
0.20729999999821302
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
62.23389999999927
PauseStartRelativeMSec
27889.7088
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5707680
TotalPromoted2768
Depth0
GenerationSize03184
TotalPromotedSize02768
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount18
GCHandleCount1072
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.760864
RatioPeakAfter
2.5166456423625707
AllocRateMBSec
156.84159276535962
HeapSizePeakMB
14.364207999999998
UserAllocated
[ 9.760864, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.364207999999998
GenSizeBeforeMB
[ 9.911031999999999, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.8895676506518488
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.70764
PromotedMB
0.002704
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
27956.5057
DurationMSec
0.8833999999988009
PauseDurationMSec
1.155399999999645
SuspendDurationMSec
0.17870000000039
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
65.3885999999984
PauseStartRelativeMSec
27956.2644
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5707640
TotalPromoted2704
Depth0
GenerationSize03144
TotalPromotedSize02704
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount20
GCHandleCount1072
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.01708
RatioPeakAfter
2.5604445970663883
AllocRateMBSec
153.19306423444215
HeapSizePeakMB
14.614096
UserAllocated
[ 10.01708, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.614096
GenSizeBeforeMB
[ 10.16092, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.7362947823991326
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.707736
PromotedMB
0.0028
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
28021.8163
DurationMSec
0.8801999999996042
PauseDurationMSec
1.2219000000004598
SuspendDurationMSec
0.2515000000021246
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
64.11259999999675
PauseStartRelativeMSec
28021.5028
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5707736
TotalPromoted2800
Depth0
GenerationSize03240
TotalPromotedSize02800
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount21
GCHandleCount1072
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.04144
RatioPeakAfter
2.5611051387099897
AllocRateMBSec
156.62194326856982
HeapSizePeakMB
14.618112
UserAllocated
[ 10.04144, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.618112
GenSizeBeforeMB
[ 10.164936, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.8702217052254353
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.709496
PromotedMB
0.00456
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
28086.8638
DurationMSec
0.8774000000012165
PauseDurationMSec
1.0472000000008848
SuspendDurationMSec
0.06130000000121072
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
64.02880000000005
PauseStartRelativeMSec
28086.7264
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5709496
TotalPromoted4560
Depth0
GenerationSize05000
TotalPromotedSize04560
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount23
GCHandleCount1072
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.021936
RatioPeakAfter
2.5626023733093084
AllocRateMBSec
156.52231495826865
HeapSizePeakMB
14.631168000000002
UserAllocated
[ 10.021936, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.631168000000002
GenSizeBeforeMB
[ 10.177992000000001, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.609195402300187
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.710032
PromotedMB
0.005072
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
28148.6175
DurationMSec
0.9170000000012806
PauseDurationMSec
1.25
SuspendDurationMSec
0.23719999999957508
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
60.57419999999911
PauseStartRelativeMSec
28148.3165
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5710032
TotalPromoted5072
Depth0
GenerationSize05536
TotalPromotedSize05072
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount23
GCHandleCount1072
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.835024
RatioPeakAfter
2.5278681450471736
AllocRateMBSec
162.36325036071705
HeapSizePeakMB
14.434208000000002
UserAllocated
[ 9.835024, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.434208000000002
GenSizeBeforeMB
[ 9.981032, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.0218619893181278
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.885504
PromotedMB
0.18004
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
28215.3446
DurationMSec
0.9490000000005239
PauseDurationMSec
1.2440999999998894
SuspendDurationMSec
0.19230000000243308
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
65.55959999999686
PauseStartRelativeMSec
28215.0954
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5885504
TotalPromoted180040
Depth0
GenerationSize0181008
TotalPromotedSize0180040
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount31
GCHandleCount1127
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount14
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.134072
RatioPeakAfter
2.520095475255815
AllocRateMBSec
154.5780023063058
HeapSizePeakMB
14.832032000000002
UserAllocated
[ 10.134072, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.832032000000002
GenSizeBeforeMB
[ 10.378856, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.8623219971348142
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
5.9208
PromotedMB
0.215264
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
28282.4777
DurationMSec
1.018899999999121
PauseDurationMSec
1.310700000001816
SuspendDurationMSec
0.20210000000224682
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
65.92589999999836
PauseStartRelativeMSec
28282.2205
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize5920800
TotalPromoted215264
Depth0
GenerationSize0216304
TotalPromotedSize0215264
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount34
GCHandleCount1135
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount13
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.137647999999999
RatioPeakAfter
2.5245858667747605
AllocRateMBSec
153.7733728322291
HeapSizePeakMB
14.947568
UserAllocated
[ 10.137647999999999, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.947568
GenSizeBeforeMB
[ 10.494392000000001, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
1.9493847101159376
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.062192
PromotedMB
0.356296
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
28344.8334
DurationMSec
0.9874999999992724
PauseDurationMSec
1.315599999998085
SuspendDurationMSec
0.23889999999664724
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
61.03910000000178
PauseStartRelativeMSec
28344.5368
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6062192
TotalPromoted356296
Depth0
GenerationSize0357696
TotalPromotedSize0356296
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount43
GCHandleCount1167
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount14
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.851592
RatioPeakAfter
2.440896626170864
AllocRateMBSec
161.39805468953037
HeapSizePeakMB
14.797184000000001
UserAllocated
[ 9.851592, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.797184000000001
GenSizeBeforeMB
[ 10.344008, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.1098650141819104
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.062504
PromotedMB
0.356608
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
28405.5714
DurationMSec
1.0122000000010303
PauseDurationMSec
1.3604000000013912
SuspendDurationMSec
0.2606999999989057
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
59.43089999999938
PauseStartRelativeMSec
28405.2529
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6062504
TotalPromoted356608
Depth0
GenerationSize0358008
TotalPromotedSize0356608
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount44
GCHandleCount1167
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount15
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.759232
RatioPeakAfter
2.426658027772023
AllocRateMBSec
164.21141190862164
HeapSizePeakMB
14.711624
UserAllocated
[ 9.759232, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.711624
GenSizeBeforeMB
[ 10.258448, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.2378202144079395
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.063512
PromotedMB
0.357616
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
28466.1743
DurationMSec
0.99120000000039
PauseDurationMSec
1.2582000000002154
SuspendDurationMSec
0.17929999999978463
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
59.35369999999966
PauseStartRelativeMSec
28465.9384
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6063512
TotalPromoted357616
Depth0
GenerationSize0359016
TotalPromotedSize0357616
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount49
GCHandleCount1167
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount16
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.033168
RatioPeakAfter
2.469684235802617
AllocRateMBSec
169.04031256686704
HeapSizePeakMB
14.97496
UserAllocated
[ 10.033168, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.97496
GenSizeBeforeMB
[ 10.521784, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.075829993780459
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.063584
PromotedMB
0.357664
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
28525.1047
DurationMSec
0.958600000001752
PauseDurationMSec
1.2933999999986554
SuspendDurationMSec
0.23210000000108266
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
57.64229999999952
PauseStartRelativeMSec
28524.8092
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6063584
TotalPromoted357664
Depth0
GenerationSize0359088
TotalPromotedSize0357664
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount52
GCHandleCount1167
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount16
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.831096
RatioPeakAfter
2.444530495495733
AllocRateMBSec
170.55349977360518
HeapSizePeakMB
14.822616
UserAllocated
[ 9.831096, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.822616
GenSizeBeforeMB
[ 10.36944, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
2.1945951265509622
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.063176
PromotedMB
0.35728
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
28588.4229
DurationMSec
1.073899999999412
PauseDurationMSec
2.2695000000021537
SuspendDurationMSec
1.0830999999998312
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
61.20939999999973
PauseStartRelativeMSec
28587.2738
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6063176
TotalPromoted357280
Depth0
GenerationSize0358680
TotalPromotedSize0357280
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount52
GCHandleCount1167
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount16
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.071896
RatioPeakAfter
2.4845711224612317
AllocRateMBSec
164.54819031063928
HeapSizePeakMB
15.064392000000002
UserAllocated
[ 10.071896, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.064392000000002
GenSizeBeforeMB
[ 10.611216, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
3.5752037291164247
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.063448
PromotedMB
0.357552
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
28658.7417
DurationMSec
4.140999999999622
PauseDurationMSec
4.419899999997142
SuspendDurationMSec
0.18109999999796855
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
69.00580000000264
PauseStartRelativeMSec
28658.5037
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6063448
TotalPromoted357552
Depth0
GenerationSize0358952
TotalPromotedSize0357552
GenerationSize11726728
TotalPromotedSize10
GenerationSize22618168
TotalPromotedSize20
GenerationSize3108280
TotalPromotedSize30
GenerationSize41251320
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount1
SinkBlockCount56
GCHandleCount1167
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount16
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure17
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.77576
RatioPeakAfter
2.4342321398649744
AllocRateMBSec
141.66577302197246
HeapSizePeakMB
14.75984
UserAllocated
[ 9.77576, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.75984
GenSizeBeforeMB
[ 10.306664, 1.7267279999999998, 2.618168, 0.10828, 0 ]
PauseTimePercentageSinceLastGC
6.019554461172526
(528 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.0555149635035914
MeanSizeAfterMB
7.143008335766415
MeanSizePeakMB
14.15813975182482
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
548
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
5.966000000000349
TotalPauseTimeMSec
578.4221999999681
MaxSuspendDurationMSec
1.0830999999998312
MaxSizePeakMB
16.880288
MaxAllocRateMBSec
214.54769422951182
TotalAllocatedMB
4742.106760000002
TotalCpuMSec
0
TotalPromotedMB
105.67407999999996
TotalSizeAfterMB
3914.3685679999953
TotalSizePeakMB
7758.660584000001
FinalizedObjects(empty)
ProcessDuration
30347.5144
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.0330944954127876
MeanSizeAfterMB
7.149465849541277
MeanSizePeakMB
14.175000176146792
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
545
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
5.284299999999348
TotalPauseTimeMSec
563.0364999999692
MaxSuspendDurationMSec
1.0830999999998312
MaxSizePeakMB
16.071632
MaxAllocRateMBSec
214.54769422951182
TotalAllocatedMB
4720.406288000003
TotalCpuMSec
0
TotalPromotedMB
98.20151199999997
TotalSizeAfterMB
3896.4588879999956
TotalSizePeakMB
7725.375096000002
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
5.128566666666302
MeanSizeAfterMB
5.969893333333334
MeanSizePeakMB
11.095162666666667
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
3
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
5.966000000000349
TotalPauseTimeMSec
15.385699999998906
MaxSuspendDurationMSec
0.24730000000272412
MaxSizePeakMB
16.880288
MaxAllocRateMBSec
170.6645105006769
TotalAllocatedMB
21.700471999999998
TotalCpuMSec
0
TotalPromotedMB
7.472568
TotalSizeAfterMB
17.90968
TotalSizePeakMB
33.285488
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
NaN
MeanSizeAfterMB
NaN
MeanSizePeakMB
NaN
MeanCpuMSec
NaN
Interesting
False
GCVersionInfoMismatch
False
Count
0
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
0
TotalPauseTimeMSec
0
MaxSuspendDurationMSec
0
MaxSizePeakMB
0
MaxAllocRateMBSec
0
TotalAllocatedMB
0
TotalCpuMSec
0
TotalPromotedMB
0
TotalSizeAfterMB
0
TotalSizePeakMB
0
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking(empty)
BGCs(empty)
GCThreadIDsToHeapNumbers(empty)
DurationMSec
59606.950300000004
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="24439"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonIISOutOfProc_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 3:13:29 PM"\\r\\n SessionEndTime="8/21/2023 3:14:33 PM"\\r\\n SessionDuration="00:01...
Events
[ <Event MSec= "0.0000" PID="1992" PName="PerfView" TID="7848" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 3:14:30 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="99" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 3:13:29 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="1992" PName="PerfView" TID="7848" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "10.5974" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="1992" PName="PerfView" TID="7848" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "10.5674" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "10.5974" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "10.6163" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "10.6163" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", - "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337148958378.4
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="1992" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="156.4332" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmp1147.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="63575.9905" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", - "
Count106
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="7848" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337148958378.4" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337148958378.4" /> ... (more) ]
Count1435
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", - "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="102" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1243" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="162" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="27" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="5" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", - " ... (more) ]
Count77
(values)
indexvalue
0\r\n", - "
1\r\n", - "
2\r\n", - "
3\r\n", - "
4\r\n", - "
5\r\n", - "
6\r\n", - "
7\r\n", - "
8\r\n", - "
9\r\n", - "
10\r\n", - "
11\r\n", - "
12\r\n", - "
13\r\n", - "
14\r\n", - "
15\r\n", - "
16\r\n", - "
17\r\n", - "
18\r\n", - "
19\r\n", - "
... (more)
MaxEventIndex24439
EventCount
24439
Size
5375345
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonIISOutOfProc_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", - "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", - "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", - "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", - "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", - " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", - " at lambda_method760(Closure, TraceLog)\r\n", - " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 15:13:29Z
SessionEndTime2023-08-21 15:14:33Z
SessionEndTimeRelativeMSec
63575.9905
SessionDuration00:01:03.5759905
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [100, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [98, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [102, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [103, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonIISOutOfProc_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
1GC.Analysis.API.GCProcessData
Benchmarks
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\f03xukje.qjb\\src\\Benchmarks\\published\\Benchmarks.exe"  --nonInteractive true --scenarios json --urls http://10.0.0.104:5000 --server IISOutOfProcess --kestrelTransport Sockets --protocol http 
NumberOfHeapCountSwitches
2
Benchmark
JsonIISOutOfProc
Id
datas_3 | JsonIISOutOfProc
TotalSuspensionTimeMSec
59.39200000005076
PercentPauseTimeInGC
1.9059953061591368
PercentTimeInGC
1.7102889981655873
MeanHeapSizeBeforeMB
14.15813975182482
MaxHeapSizeMB
16.880288
TotalAllocationsMB
4742.106760000002
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonIISOutOfProc_Windows.gc.etl.zip
ProcessName
Benchmarks
datas_3 | JsonMapAction
Submission#4+LoadInfo
WorkingSetMB
86
PrivateMemoryMB
56
Latency50thMS
0.24
Latency75thMS
0.43
Latency90thMS
0.55
Latency99thMS
1.16
MeanLatencyMS
0.34
ProcessId
10600
RequestsPerMSec
807.822
Run
datas_3
Data
GC.Analysis.API.GCProcessData
ProcessName
MapAction
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\dqnyu4eh.dnn\\src\\BenchmarksApps\\MapAction\\published\\MapAction.exe"  
ProcessID
10600
GCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
2.222144
PromotedMB
1.204112
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
1
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6169.9643
DurationMSec
5.880000000000109
PauseDurationMSec
6.206599999999526
SuspendDurationMSec
0.06989999999950669
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
6169.6908
PauseStartRelativeMSec
6169.6908
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize2222144
TotalPromoted1204112
Depth0
GenerationSize0793984
TotalPromotedSize01204112
GenerationSize11211424
TotalPromotedSize10
GenerationSize20
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize4111744
TotalPromotedSize40
FinalizationPromotedSize37598
FinalizationPromotedCount23
PinnedObjectCount2
SinkBlockCount3
GCHandleCount712
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount999999999
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.2270815932720833
AllocRateMBSec
0
HeapSizePeakMB
2.7267520000000003
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
2.7267520000000003
GenSizeBeforeMB
[ 2.62176, 0, 0, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
0.10049713584943179
1
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
3.744112
PromotedMB
2.405616
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
2
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6192.0401
DurationMSec
7.203599999999824
PauseDurationMSec
7.427300000000287
SuspendDurationMSec
0.1613999999999578
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
16.001100000000406
PauseStartRelativeMSec
6191.8463
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize3744112
TotalPromoted2405616
Depth1
GenerationSize0793984
TotalPromotedSize01251048
GenerationSize11253496
TotalPromotedSize11154568
GenerationSize21154416
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize4437224
TotalPromotedSize40
FinalizationPromotedSize1352
FinalizationPromotedCount25
PinnedObjectCount4
SinkBlockCount13
GCHandleCount1008
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration1
Gen0ReductionCount0
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.344576
RatioPeakAfter
1.055624404398159
AllocRateMBSec
146.52592634256024
HeapSizePeakMB
3.952376
UserAllocated
[ 2.344576, 0, 0, 0, 0 ]
HeapSizeBeforeMB
3.952376
GenSizeBeforeMB
[ 2.63596, 1.211424, 0, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
31.702122210650607
2
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
4.924168
PromotedMB
0.818152
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
3
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6216.6257
DurationMSec
4.814700000000812
PauseDurationMSec
5.127599999999802
SuspendDurationMSec
0.2687000000005355
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
17.09569999999985
PauseStartRelativeMSec
6216.3403
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize4924168
TotalPromoted818152
Depth0
GenerationSize0793984
TotalPromotedSize0818152
GenerationSize12070992
TotalPromotedSize10
GenerationSize21154416
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize4799784
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount15
GCHandleCount1165
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps1
CondemnedGeneration0
Gen0ReductionCount303
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
2.504744
RatioPeakAfter
1.044398160257733
AllocRateMBSec
146.51309978532743
HeapSizePeakMB
5.142792
UserAllocated
[ 2.504744, 0, 0, 0, 0 ]
HeapSizeBeforeMB
5.142792
GenSizeBeforeMB
[ 2.629888, 1.253496, 1.154416, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
23.073080955573122
3
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
1N
HeapSizeAfterMB
6.3402
PromotedMB
2.756592
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
4
TypeNonConcurrentGC
ReasonAllocSmall
Generation
1
StartRelativeMSec
6303.53
DurationMSec
5.589899999999943
PauseDurationMSec
5.860899999999674
SuspendDurationMSec
0.15429999999923893
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
81.86509999999998
PauseStartRelativeMSec
6303.3064
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6340200
TotalPromoted2756592
Depth1
GenerationSize0793984
TotalPromotedSize0755960
GenerationSize11144584
TotalPromotedSize12000632
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41141744
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount3
SinkBlockCount16
GCHandleCount1321
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration1
Gen0ReductionCount221
ReasonAllocSmall
GlobalMechanismsCompaction, Promotion, Demotion, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidTrue
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.222544
RatioPeakAfter
2.008594050660862
AllocRateMBSec
112.6553806200689
HeapSizePeakMB
12.734887999999998
UserAllocated
[ 9.222512, 0, 0, 3.200000000000425E-05, 0 ]
HeapSizeBeforeMB
12.734887999999998
GenSizeBeforeMB
[ 9.404487999999999, 2.070992, 1.154416, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
6.6809155780494915
4
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.369608
PromotedMB
0.011056
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
5
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6403.7095
DurationMSec
1.1715999999996711
PauseDurationMSec
1.524199999999837
SuspendDurationMSec
0.2647999999999229
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
94.26550000000043
PauseStartRelativeMSec
6403.3864
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6369608
TotalPromoted11056
Depth0
GenerationSize0794552
TotalPromotedSize011056
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41170584
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount18
GCHandleCount1321
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount63
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.779024
RatioPeakAfter
2.2481308111896365
AllocRateMBSec
103.73916225978704
HeapSizePeakMB
14.319711999999999
UserAllocated
[ 9.779024, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.319711999999999
GenSizeBeforeMB
[ 9.91524, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.591194042783131
5
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.378168
PromotedMB
0.011288
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
6
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6500.5617
DurationMSec
0.9027999999998428
PauseDurationMSec
1.309599999999591
SuspendDurationMSec
0.3147999999991953
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
95.30460000000039
PauseStartRelativeMSec
6500.1868
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6378168
TotalPromoted11288
Depth0
GenerationSize0794872
TotalPromotedSize011288
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41178824
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount20
GCHandleCount1321
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.957120000000002
RatioPeakAfter
2.275361828035887
AllocRateMBSec
104.4768038478726
HeapSizePeakMB
14.512639999999998
UserAllocated
[ 9.957120000000002, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.512639999999998
GenSizeBeforeMB
[ 10.108168, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.3554943269204645
6
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.37792
PromotedMB
0.011088
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
7
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6597.8161
DurationMSec
0.9301999999997861
PauseDurationMSec
1.1909999999998035
SuspendDurationMSec
0.17619999999988067
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
96.1190000000006
PauseStartRelativeMSec
6597.5847
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6377920
TotalPromoted11088
Depth0
GenerationSize0794624
TotalPromotedSize011088
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41178824
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount31
GCHandleCount1321
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount9
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.996248
RatioPeakAfter
2.2846620841904572
AllocRateMBSec
103.99866831739757
HeapSizePeakMB
14.571392
UserAllocated
[ 9.996248, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.571392
GenSizeBeforeMB
[ 10.166920000000001, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.2239235433149713
7
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.378432
PromotedMB
0.011552
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
8
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6694.8549
DurationMSec
0.944999999999709
PauseDurationMSec
1.3666999999995824
SuspendDurationMSec
0.3329999999996289
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
95.71410000000014
PauseStartRelativeMSec
6694.4614
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6378432
TotalPromoted11552
Depth0
GenerationSize0795136
TotalPromotedSize011552
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41178824
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount35
GCHandleCount1321
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount9
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.00528
RatioPeakAfter
2.2801516109288302
AllocRateMBSec
104.53297894458586
HeapSizePeakMB
14.543792
UserAllocated
[ 10.00528, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.543792
GenSizeBeforeMB
[ 10.13932, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.407796392283115
8
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.547328
PromotedMB
0.229256
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
9
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6787.7377
DurationMSec
1.09900000000016
PauseDurationMSec
1.5039999999999054
SuspendDurationMSec
0.30429999999978463
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
91.57049999999981
PauseStartRelativeMSec
6787.3715
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6547328
TotalPromoted229256
Depth0
GenerationSize0959912
TotalPromotedSize0229256
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41182944
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount46
GCHandleCount1375
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount9
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.856256
RatioPeakAfter
2.2197342182948527
AllocRateMBSec
107.63571237461868
HeapSizePeakMB
14.533328000000001
UserAllocated
[ 9.856256, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.533328000000001
GenSizeBeforeMB
[ 10.128856, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.615909835669179
9
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.667816
PromotedMB
0.363264
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
10
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6871.092
DurationMSec
1.0887000000002445
PauseDurationMSec
1.4112999999997555
SuspendDurationMSec
0.22589999999945576
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
81.96960000000036
PauseStartRelativeMSec
6870.8077
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6667816
TotalPromoted363264
Depth0
GenerationSize01076280
TotalPromotedSize0363264
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41187064
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount58
GCHandleCount1410
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount11
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.222064
RatioPeakAfter
2.262580731081961
AllocRateMBSec
124.70554937440168
HeapSizePeakMB
15.086471999999997
UserAllocated
[ 10.222064, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.086471999999997
GenSizeBeforeMB
[ 10.681999999999999, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.692593867420181
10
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.668112
PromotedMB
0.363208
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
11
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
6955.3857
DurationMSec
1.0988999999999578
PauseDurationMSec
1.5520999999998821
SuspendDurationMSec
0.3546999999998661
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
82.79070000000047
PauseStartRelativeMSec
6954.9726
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6668112
TotalPromoted363208
Depth0
GenerationSize01076576
TotalPromotedSize0363208
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41187064
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount62
GCHandleCount1410
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.007064
RatioPeakAfter
2.2399299831796466
AllocRateMBSec
120.8718370541612
HeapSizePeakMB
14.936104
UserAllocated
[ 10.007064, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.936104
GenSizeBeforeMB
[ 10.531632000000002, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.8402282115365813
11
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.668032
PromotedMB
0.363128
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
12
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7040.5697
DurationMSec
1.097899999999754
PauseDurationMSec
1.415100000000166
SuspendDurationMSec
0.22929999999996653
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
83.79619999999977
PauseStartRelativeMSec
7040.2819
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6668032
TotalPromoted363128
Depth0
GenerationSize01076496
TotalPromotedSize0363128
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41187064
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount67
GCHandleCount1410
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.070232
RatioPeakAfter
2.2569429780780896
AllocRateMBSec
120.1752824113746
HeapSizePeakMB
15.049368000000001
UserAllocated
[ 10.070232, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.049368000000001
GenSizeBeforeMB
[ 10.644896000000001, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.660695236430106
12
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.667912
PromotedMB
0.362952
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
13
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7121.4125
DurationMSec
1.060099999999693
PauseDurationMSec
1.3126000000002023
SuspendDurationMSec
0.15749999999934516
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
79.52160000000003
PauseStartRelativeMSec
7121.1903
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6667912
TotalPromoted362952
Depth0
GenerationSize01076376
TotalPromotedSize0362952
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41187064
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount68
GCHandleCount1410
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.883232
RatioPeakAfter
2.219707758590695
AllocRateMBSec
124.2836160238224
HeapSizePeakMB
14.800815999999998
UserAllocated
[ 9.883232, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.800815999999998
GenSizeBeforeMB
[ 10.396344, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.6238176415430579
13
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.667752
PromotedMB
0.362792
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
14
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7204.1185
DurationMSec
1.0366000000003623
PauseDurationMSec
1.4540999999999258
SuspendDurationMSec
0.32560000000012224
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
81.25869999999941
PauseStartRelativeMSec
7203.7323
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6667752
TotalPromoted362792
Depth0
GenerationSize01076216
TotalPromotedSize0362792
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41187064
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount72
GCHandleCount1410
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.166727999999999
RatioPeakAfter
2.2631267629629894
AllocRateMBSec
125.1155630104847
HeapSizePeakMB
15.089967999999999
UserAllocated
[ 10.166727999999999, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.089967999999999
GenSizeBeforeMB
[ 10.685496, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.7580108520083197
14
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.668176
PromotedMB
0.363216
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
15
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7287.568
DurationMSec
1.0997999999999593
PauseDurationMSec
1.425000000000182
SuspendDurationMSec
0.23180000000047585
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
82.1234999999997
PauseStartRelativeMSec
7287.2796
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6668176
TotalPromoted363216
Depth0
GenerationSize01076640
TotalPromotedSize0363216
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41187064
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount77
GCHandleCount1410
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.014056
RatioPeakAfter
2.24327252310077
AllocRateMBSec
121.93898214274888
HeapSizePeakMB
14.958535999999999
UserAllocated
[ 10.014056, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.958535999999999
GenSizeBeforeMB
[ 10.554064, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.7055961507390127
15
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.66772
PromotedMB
0.36276
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
16
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7371.0509
DurationMSec
1.050799999999981
PauseDurationMSec
1.330300000000534
SuspendDurationMSec
0.19220000000041182
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
82.13040000000001
PauseStartRelativeMSec
7370.7994
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6667720
TotalPromoted362760
Depth0
GenerationSize01076184
TotalPromotedSize0362760
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41187064
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount82
GCHandleCount1410
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.083680000000001
RatioPeakAfter
2.2511407197662767
AllocRateMBSec
122.77646279574918
HeapSizePeakMB
15.009975999999998
UserAllocated
[ 10.083680000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.009975999999998
GenSizeBeforeMB
[ 10.605504, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.5939238467931918
16
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.667904
PromotedMB
0.362944
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
17
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7443.0085
DurationMSec
1.025499999999738
PauseDurationMSec
1.3120000000008076
SuspendDurationMSec
0.18950000000040745
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
70.65059999999994
PauseStartRelativeMSec
7442.7534
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6667904
TotalPromoted362944
Depth0
GenerationSize01076368
TotalPromotedSize0362944
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41187064
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount85
GCHandleCount1410
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
8.882679999999999
RatioPeakAfter
2.070550505826118
AllocRateMBSec
125.72688696203579
HeapSizePeakMB
13.806231999999998
UserAllocated
[ 8.882679999999999, 0, 0, 0, 0 ]
HeapSizeBeforeMB
13.806231999999998
GenSizeBeforeMB
[ 9.40176, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.8231692573653453
17
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.667944
PromotedMB
0.363224
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
18
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7525.6962
DurationMSec
1.0495999999993728
PauseDurationMSec
1.4173000000000684
SuspendDurationMSec
0.26859999999942374
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
81.32740000000013
PauseStartRelativeMSec
7525.3625
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6667944
TotalPromoted363224
Depth0
GenerationSize01076408
TotalPromotedSize0363224
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41187064
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount89
GCHandleCount1410
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount14
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.219816
RatioPeakAfter
2.2749813135803176
AllocRateMBSec
125.66264260261589
HeapSizePeakMB
15.169448
UserAllocated
[ 10.219816, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.169448
GenSizeBeforeMB
[ 10.764976, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.7128589504827076
18
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.66768
PromotedMB
0.362608
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
19
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7603.8382
DurationMSec
1.0194000000001324
PauseDurationMSec
1.3163000000004104
SuspendDurationMSec
0.19980000000032305
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
76.82759999999962
PauseStartRelativeMSec
7603.5745
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6667680
TotalPromoted362608
Depth0
GenerationSize01076144
TotalPromotedSize0362608
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41187064
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount95
GCHandleCount1410
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
9.731656000000001
RatioPeakAfter
2.2016821443140646
AllocRateMBSec
126.66874925157168
HeapSizePeakMB
14.680112000000001
UserAllocated
[ 9.731656000000001, 0, 0, 0, 0 ]
HeapSizeBeforeMB
14.680112000000001
GenSizeBeforeMB
[ 10.275640000000001, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.6844564962849433
19
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
0N
HeapSizeAfterMB
6.668288
PromotedMB
0.363384
GlobalCondemnedReasons
Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
EncodedReasonsMicrosoft.Diagnostics.Tracing.Analysis.GC.EncodedCondemnedReasons
CondemnedReasonGroups[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ... (9 more) ]
PerHeapCondemnedReasons
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCCondemnedReasons
Number
20
TypeNonConcurrentGC
ReasonAllocSmall
Generation
0
StartRelativeMSec
7686.1846
DurationMSec
1.1278000000002066
PauseDurationMSec
1.5261000000000422
SuspendDurationMSec
0.3036999999994805
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
keyvalue
1Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
2Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
0Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
3Microsoft.Diagnostics.Tracing.Analysis.GC.MarkInfo
DurationSinceLastRestartMSec
80.95850000000064
PauseStartRelativeMSec
7685.8172
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
0
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories
indexvalue
0Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
1Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
2Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
3Microsoft.Diagnostics.Tracing.Analysis.GC.GCPerHeapHistory
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize6668288
TotalPromoted363384
Depth0
GenerationSize01076752
TotalPromotedSize0363384
GenerationSize11144584
TotalPromotedSize10
GenerationSize23154896
TotalPromotedSize20
GenerationSize3104992
TotalPromotedSize30
GenerationSize41187064
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount0
PinnedObjectCount2
SinkBlockCount98
GCHandleCount1410
LOHWaitThreads
<null>
GlobalHeapHistory
Microsoft.Diagnostics.Tracing.Analysis.GC.GCGlobalHeapHistory
FinalYoungestDesired2621440
NumHeaps4
CondemnedGeneration0
Gen0ReductionCount12
ReasonAllocSmall
GlobalMechanismsCompaction, CardBundles
PauseModeInteractive
MemoryPressure16
HasMemoryPressureTrue
CondemnReasons00
HasCondemnReasons0True
CondemnReasons10
HasCondemnReasons1True
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
10.066256
RatioPeakAfter
2.2498020481418917
AllocRateMBSec
124.3384697097886
HeapSizePeakMB
15.002327999999999
UserAllocated
[ 10.066256, 0, 0, 0, 0 ]
HeapSizeBeforeMB
15.002327999999999
GenSizeBeforeMB
[ 10.597856, 1.144584, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
1.850163545680078
(476 more)
Stats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.09278286290316
MeanSizeAfterMB
7.346215451612896
MeanSizePeakMB
13.908966564516104
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
496
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
7.427300000000287
TotalPauseTimeMSec
542.0202999999674
MaxSuspendDurationMSec
0.3805999999995038
MaxSizePeakMB
17.315096
MaxAllocRateMBSec
191.30083634225275
TotalAllocatedMB
4266.159024000002
TotalCpuMSec
0
TotalPromotedMB
100.06937599999979
TotalSizeAfterMB
3643.7228639999967
TotalSizePeakMB
6898.847415999988
FinalizedObjects(empty)
ProcessDuration
30313.3953
IsServerGCUsed
0
HeapCount
1
HasDetailedGCInfo
True
Generations
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.0645989837397685
MeanSizeAfterMB
7.350480097560968
MeanSizePeakMB
13.918268682926808
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
492
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
6.206599999999526
TotalPauseTimeMSec
523.7826999999661
MaxSuspendDurationMSec
0.3805999999995038
MaxSizePeakMB
17.315096
MaxAllocRateMBSec
191.30083634225275
TotalAllocatedMB
4244.858704000002
TotalCpuMSec
0
TotalPromotedMB
88.5190159999998
TotalSizeAfterMB
3616.4362079999964
TotalSizePeakMB
6847.788191999989
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
1
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
5.703400000000026
MeanSizeAfterMB
5.982261333333334
MeanSizePeakMB
11.248042666666668
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
3
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
7.427300000000287
TotalPauseTimeMSec
17.110200000000077
MaxSuspendDurationMSec
0.1613999999999578
MaxSizePeakMB
17.056864
MaxAllocRateMBSec
154.6302327428715
TotalAllocatedMB
21.30032
TotalCpuMSec
0
TotalPromotedMB
7.830624
TotalSizeAfterMB
17.946784
TotalSizePeakMB
33.744128
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
2
Microsoft.Diagnostics.Tracing.Analysis.GC.GCStats
MeanPauseDurationMSec
1.1274000000012165
MeanSizeAfterMB
9.339872
MeanSizePeakMB
17.315096
MeanCpuMSec
0
Interesting
True
GCVersionInfoMismatch
False
Count
1
NumInduced
0
PinnedObjectSizes
0
PinnedObjectPercentage
0
NumWithPinEvents
0
NumWithPinPlugEvents
0
MaxPauseDurationMSec
1.1274000000012165
TotalPauseTimeMSec
1.1274000000012165
MaxSuspendDurationMSec
0.20060000000012224
MaxSizePeakMB
17.315096
MaxAllocRateMBSec
0
TotalAllocatedMB
0
TotalCpuMSec
0
TotalPromotedMB
3.719736
TotalSizeAfterMB
9.339872
TotalSizePeakMB
17.315096
FinalizedObjects(empty)
ProcessDuration
0
IsServerGCUsed
-1
HeapCount
-1
HasDetailedGCInfo
False
Gen2Blocking(empty)
BGCs
indexvalue
0
Microsoft.Diagnostics.Tracing.Analysis.GC.TraceGC
PercentTimeInGC
NaN
HeapCount
1
GCGenerationName
2B
HeapSizeAfterMB
9.339872
PromotedMB
3.719736
GlobalCondemnedReasons
<null>
PerHeapCondemnedReasons(empty)
Number
221
TypeBackgroundGC
ReasonAllocSmall
Generation
2
StartRelativeMSec
21520.0787
DurationMSec
10.731400000000576
PauseDurationMSec
1.1274000000012165
SuspendDurationMSec
0.20060000000012224
ProcessCpuMSec
0
GCCpuMSec
0
PerHeapMarkTimes
<null>
DurationSinceLastRestartMSec
8.708200000000943
PauseStartRelativeMSec
21519.9018
IsComplete
True
BGCCurrentPhaseBGC1stNonConcurrent
BGCRevisitInfoArr
<null>
BGCFinalPauseMSec
1.0168000000012398
ServerGcHeapHistories(empty)
AllocedSinceLastGCBasedOnAllocTickMB
[ 0, 0 ]
PerHeapHistories(empty)
TotalPinnedPlugSize
0
TotalUserPinnedPlugSize
0
HeapStats
Microsoft.Diagnostics.Tracing.Analysis.GC.GCHeapStats
TotalHeapSize9339872
TotalPromoted3719736
Depth2
GenerationSize01123632
TotalPromotedSize09080
GenerationSize13772336
TotalPromotedSize12000632
GenerationSize23151848
TotalPromotedSize21605064
GenerationSize3104992
TotalPromotedSize3104960
GenerationSize41187064
TotalPromotedSize40
FinalizationPromotedSize0
FinalizationPromotedCount6
PinnedObjectCount0
SinkBlockCount41
GCHandleCount1424
LOHWaitThreads
<null>
GlobalHeapHistory
<null>
FreeList
Microsoft.Diagnostics.Tracing.Analysis.GC.FreeListEfficiency
ValidFalse
Allocated0
FreeListConsumed0
AllocedSinceLastGCMB
0
RatioPeakAfter
1.8538900747247928
AllocRateMBSec
0
HeapSizePeakMB
17.315096
UserAllocated
[ 0, 0, 0, 0, 0 ]
HeapSizeBeforeMB
7.826208
GenSizeBeforeMB
[ 0.793984, 3.772336, 3.154896, 0.104992, 0 ]
PauseTimePercentageSinceLastGC
3.484430616649824
GCThreadIDsToHeapNumbers(empty)
DurationMSec
38869.078
Parent
GC.Analysis.API.Analyzer
TraceLog
<TraceLogHeader \\r\\n MachineName="TECHEMP02"\\r\\n EventCount="21588"\\r\\n FilePath="C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonMapAction_Windows.gc.etlx"\\r\\n EventsLost="0"\\r\\n SessionStartTime="8/21/2023 1:51:02 PM"\\r\\n SessionEndTime="8/21/2023 1:51:46 PM"\\r\\n SessionDuration="00:00:43...
Events
[ <Event MSec= "0.0000" PID="1072" PName="PerfView" TID="11872" EventName="EventTrace" BufferSize="65,536" Version="0x0002000A" ProviderVersion="20,348" NumberOfProcessors="28" EndTime="8/21/2023 1:51:43 PM" TimerResolution="156,250" MaxFileSize="0" LogFileMode="0x04010001" BuffersWritten="94" StartBuffers="1" PointerSize="8" EventsLost="0" CPUSpeed="2,195" BootTime="8/21/2023 12:01:22 AM" PerfFreq="10,000,000" StartTime="8/21/2023 1:51:02 PM" ReservedFlags="0x00000001" BuffersLost="0" SessionName="Relogger" LogFileName="[multiple files]" UTCOffsetMinutes="480"/>, <Event MSec= "0.0000" PID="1072" PName="PerfView" TID="11872" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "10.3523" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "0.0000" PID="1072" PName="PerfView" TID="11872" EventName="EventTrace/PartitionInfoExtensionV2" ProviderName="MSNT_SystemTrace" EventVersion="0" Reserved="0" PartitionType="0" QpcOffsetFromRoot="0" PartitionId="" ParentId=""/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/SystemPaths" SystemDirectory="C:\\Windows\\system32" SystemWindowsDirectory="C:\\Windows\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/UnknownVolume" Value="\\Device\\HarddiskVolume1\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "0.0000" PID= "0" PName= "Idle" TID= "0" EventName="SysConfig/VolumeMapping" NtPath="\\\\" DosPath="\\\\"/>, <Event MSec= "10.3214" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/EndExtension" GroupMask1="0x00000000" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "10.3523" PID= "-1" PName="Process(-1)" TID= "-1" EventName="EventTrace/Extension" GroupMask1="0x00000003" GroupMask2="0x00000000" GroupMask3="0x00000000" GroupMask4="0x00000000" GroupMask5="0x00000000" GroupMask6="0x00000000" GroupMask7="0x00000000" GroupMask8="0x00000000" KernelEventVersion="0x00000055"/>, <Event MSec= "10.3721" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/>, <Event MSec= "10.3721" PID= "4" PName= "System" TID= "-1" EventName="Process/DCStart" ProcessID="4" ParentID="0" ImageFileName="System" DirectoryTableBase="0x001AE000" Flags="Protected" SessionID="-1" ExitStatus="0x00000103" UniqueProcessKey="0xFFFFD207FDEAE040" CommandLine=""/> ... (more) ]
Log \r\n", - "
StartTime8/21/2023 12:01:22 AM
StartTimeRelativeMSec0
EndTime12/31/9999 3:59:59 PM
EndTimeRelativeMSec922337153905798.2
(values)
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.Kernel.EventTraceHeaderTraceData
1Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
2Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
3Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventData
4Microsoft.Diagnostics.Tracing.Parsers.Kernel.SystemPathsTraceData
5Microsoft.Diagnostics.Tracing.StringTraceData
6Microsoft.Diagnostics.Tracing.StringTraceData
7Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
8Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
9Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
11Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
12Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
13Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
14Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
15Microsoft.Diagnostics.Tracing.Parsers.Kernel.VolumeMappingTraceData
16Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
17Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeaderExtensionTraceData
18Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
19Microsoft.Diagnostics.Tracing.Parsers.Kernel.ProcessTraceData
... (more)
Processes
[ <TraceProcess PID="1072" ProcessIndex="0" ParentID="8972" Exe="PerfView" Start="0" End="156.1704" ExitStatus="0" CPUMSec="0" Is64Bit="True" CommandLine="&quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\v3.0.7\\PerfView.exe&quot; start /AcceptEula /NoGui /GCCollectOnly &quot;C:\\Users\\Administrator\\AppData\\Local\\Temp\\tmp930A.tmp&quot;" />, <TraceProcess PID="0" ProcessIndex="1" ParentID="-1" Exe="Idle" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="4" ProcessIndex="2" ParentID="-1" Exe="System" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="360" ProcessIndex="3" ParentID="4" Exe="Registry" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="" />, <TraceProcess PID="756" ProcessIndex="4" ParentID="4" Exe="smss" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="\\SystemRoot\\System32\\smss.exe" />, <TraceProcess PID="876" ProcessIndex="5" ParentID="868" Exe="csrss" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="952" ProcessIndex="6" ParentID="868" Exe="wininit" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="wininit.exe" />, <TraceProcess PID="960" ProcessIndex="7" ParentID="940" Exe="csrss" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="%SystemRoot%\\system32\\csrss.exe ObjectDirectory=\\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16" />, <TraceProcess PID="808" ProcessIndex="8" ParentID="940" Exe="winlogon" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="winlogon.exe" />, <TraceProcess PID="1040" ProcessIndex="9" ParentID="952" Exe="services" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\services.exe" />, <TraceProcess PID="1060" ProcessIndex="10" ParentID="952" Exe="lsass" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\lsass.exe" />, <TraceProcess PID="1184" ProcessIndex="11" ParentID="1040" Exe="svchost" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p" />, <TraceProcess PID="1212" ProcessIndex="12" ParentID="952" Exe="fontdrvhost" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1216" ProcessIndex="13" ParentID="808" Exe="fontdrvhost" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="&quot;fontdrvhost.exe&quot;" />, <TraceProcess PID="1296" ProcessIndex="14" ParentID="1040" Exe="svchost" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k RPCSS -p" />, <TraceProcess PID="1352" ProcessIndex="15" ParentID="1040" Exe="svchost" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k DcomLaunch -p -s LSM" />, <TraceProcess PID="1420" ProcessIndex="16" ParentID="808" Exe="dwm" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="&quot;dwm.exe&quot;" />, <TraceProcess PID="1584" ProcessIndex="17" ParentID="1040" Exe="svchost" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k termsvcs -s TermService" />, <TraceProcess PID="1608" ProcessIndex="18" ParentID="1040" Exe="svchost" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\system32\\svchost.exe -k LocalServiceNoNetwork -p" />, <TraceProcess PID="1644" ProcessIndex="19" ParentID="1040" Exe="svchost" Start="0" End="43854.6287" CPUMSec="0" Is64Bit="True" CommandLine="C:\\Windows\\System32\\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService" /> ... (more) ]
Log \r\n", - "
Count108
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
Threads
[ <TraceThread TID="11872" ThreadIndex="0" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="1" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="2" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="3" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="4" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="5" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="6" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="7" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="8" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="9" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="10" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="11" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="12" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="13" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="14" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="15" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="16" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="17" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="18" StartTimeRelative="0" EndTimeRelative="922337153905798.2" />, <TraceThread TID="0" ThreadIndex="19" StartTimeRelative="0" EndTimeRelative="922337153905798.2" /> ... (more) ]
Count1400
(values)
indexvalue
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
... (more)
ModuleFiles
[ ]
Count0
Log \r\n", - "
(values)(empty)
CallStacks
[ ]
Count0
CodeAddresses[ ]
(values)(empty)
CodeAddresses
[ ]
Count0
Methods[ ]
ModuleFiles[ ]
ManagedMethodRecordCount0
TotalCodeAddresses0
UnsafePDBMatchingFalse
(values)(empty)
Stats
[ <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="MSNT_SystemTrace" EventName="EventTrace/PartitionInfoExtensionV2" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/Extension" Count="3" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/SystemPaths" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/UnknownVolume" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="SysConfig/VolumeMapping" Count="9" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/EndExtension" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Process/DCStart" Count="101" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/DCStart" Count="1179" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="EventTrace/RundownComplete" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Windows Kernel" EventName="Thread/Start" Count="191" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ManifestData" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventInfo" Count="28" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="Tracing/Start" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="SessionParameters" Count="2" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="KernelTraceControl" EventName="MetaData/EventMapInfo" Count="13" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="KernelEnableParameters" Count="1" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ProviderEnableParameters" Count="5" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="Microsoft-Windows-DotNETRuntimePrivate" EventName="GC/Settings" Count="4" StackCount="0"/>\r\n", - ", <TraceEventCounts ProviderName="PerfView" EventName="ClrEnableParameters" Count="2" StackCount="0"/>\r\n", - " ... (more) ]
Count78
(values)
indexvalue
0\r\n", - "
1\r\n", - "
2\r\n", - "
3\r\n", - "
4\r\n", - "
5\r\n", - "
6\r\n", - "
7\r\n", - "
8\r\n", - "
9\r\n", - "
10\r\n", - "
11\r\n", - "
12\r\n", - "
13\r\n", - "
14\r\n", - "
15\r\n", - "
16\r\n", - "
17\r\n", - "
18\r\n", - "
19\r\n", - "
... (more)
MaxEventIndex21588
EventCount
21588
Size
4885597
EventsLost
0
FilePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonMapAction_Windows.gc.etlx
MachineName
TECHEMP02
OSName
Windows Server 2022 Datacenter
OSBuild
20348.1129.amd64fre.fe_release.210507-1500
BootTime2023-08-21 00:01:22Z
UTCOffsetMinutes
-420
HasPdbInfo
False
MemorySizeMeg
32259
HasCallStacks
False
SampleProfileInterval00:00:00.0010000
Truncated
False
FirstTimeInversionInvalid
Parsers
indextypevalue
0Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
1Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
2Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrRundownTraceEventParser
3Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrStressTraceEventParser
4Microsoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.ClrPrivateTraceEventParser
5Microsoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JScriptTraceEventParser
6Microsoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.JSDumpHeapTraceEventParser
7Microsoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.AspNet.AspNetTraceEventParser
8Microsoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.TplEtwProviderTraceEventParser
9Microsoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.SymbolTraceEventParser
10Microsoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.Kernel.HeapTraceProviderTraceEventParser
11Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
12Microsoft.Diagnostics.Tracing.Parsers.IisTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.IisTraceEventParser
13Microsoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParserMicrosoft.Diagnostics.Tracing.EventPipe.SampleProfilerTraceEventParser
14Microsoft.Diagnostics.Tracing.Parsers.WpfTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.WpfTraceEventParser
15Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Clr
Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Source \r\n", - "
IsStaticTrue
Kernel
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Source \r\n", - "
IsStaticTrue
Dynamic
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
DynamicProviders[ PerfView a8a71ac1-040f-54a2-07ca-00a89b5ab761 ]
IsStaticFalse
Source \r\n", - "
Registered
System.ApplicationException: You may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\\r\\nInstead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them\\r\\n at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEv...
TargetSiteVoid RegisterEventTemplateImpl(Microsoft.Diagnostics.Tracing.TraceEvent)
MessageYou may not register callbacks in TraceEventParsers that you attach directly to a TraceLog.\r\n", - "Instead you should use TraceEvents.GetSource() and attach TraceEventParsers to that and define callbacks on them
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceMicrosoft.Diagnostics.Tracing.TraceEvent
HResult-2146232832
StackTrace at Microsoft.Diagnostics.Tracing.Etlx.TraceLog.RegisterEventTemplateImpl(TraceEvent template)\r\n", - " at Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser..ctor(TraceEventSource source, Boolean dontRegister)\r\n", - " at lambda_method760(Closure, TraceLog)\r\n", - " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 58
SessionStartTime2023-08-21 13:51:02Z
SessionEndTime2023-08-21 13:51:46Z
SessionEndTimeRelativeMSec
43854.6287
SessionDuration00:00:43.8546287
PointerSize
8
NumberOfProcessors
28
CpuSpeedMHz
2195
OSVersion
10.0.0.0
Major10
Minor0
Build0
Revision0
MajorRevision0
MinorRevision0
IsRealTime
False
DataLifetimeMsec
0
UserData
keytypevalue
parsers\\Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.DynamicTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.RegisteredTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.EventPipe.EventPipeTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.ExternalTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.ClrTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.Clr.ClrTraceEventParserState
parsers\\Microsoft.Diagnostics.Tracing.Parsers.MicrosoftWindowsKernelFileTraceEventParser
Microsoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserStateMicrosoft.Diagnostics.Tracing.Parsers.KernelTraceEventParserState
Computers/Processes
Microsoft.Diagnostics.Tracing.Analysis.TraceProcesses[ , , , , , , , , , , , , , , , , , , , ... (more) ]
Computers/LoadedDotNetRuntimes
System.Collections.Generic.Dictionary`2[Microsoft.Diagnostics.Tracing.Analysis.ProcessIndex,Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime][ [99, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [88, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [96, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [84, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [101, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime], [102, Microsoft.Diagnostics.Tracing.Analysis.TraceLoadedDotNetRuntimeExtensions+DotNetRuntime] ]
TraceLogPath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonMapAction_Windows.gc.etl.zip
AllGCProcessData
keyvalue
dotnet
indexvalue
0GC.Analysis.API.GCProcessData
MapAction
indexvalue
0GC.Analysis.API.GCProcessData
CPUAnalyzer
<null>
Data2
<null>
CommandLine
"C:\\Users\\Administrator\\AppData\\Local\\Temp\\benchmarks-agent\\benchmarks-server-8972\\dqnyu4eh.dnn\\src\\BenchmarksApps\\MapAction\\published\\MapAction.exe"  
NumberOfHeapCountSwitches
4
Benchmark
JsonMapAction
Id
datas_3 | JsonMapAction
TotalSuspensionTimeMSec
56.81480000000283
PercentPauseTimeInGC
1.7880553947711935
PercentTimeInGC
1.6006306624450102
MeanHeapSizeBeforeMB
13.908966564516104
MaxHeapSizeMB
17.315096
TotalAllocationsMB
4266.159024000002
TracePath
C:\\Traces\\GCTraces\\DATAS4_Runs\\datas_3\\JsonMapAction_Windows.gc.etl.zip
ProcessName
MapAction
(439 more)
" - ] - }, - "metadata": {}, - "output_type": "display_data" + "outputs": [], + "source": [ + "dataManager.SaveDifferences(\"baseline\", \"run\", new List { nameof(LoadInfo.PrivateMemoryMB), nameof(LoadInfo.RequestsPerMSec) });" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "dotnet_interactive": { + "language": "csharp" + }, + "polyglot_notebook": { + "kernelName": "csharp" + }, + "vscode": { + "languageId": "polyglot-notebook" } - ], + }, + "outputs": [], "source": [ "dataManager.Data" ] @@ -3355,7 +1231,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": null, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -3401,7 +1277,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": null, "metadata": { "dotnet_interactive": { "language": "csharp" From f57042a5eb7df196a86fd2ea39e3ddbc00239b19 Mon Sep 17 00:00:00 2001 From: mrsharm Date: Fri, 15 Sep 2023 00:44:29 -0700 Subject: [PATCH 23/26] Cleared output --- .../ASPNetBenchmarks/ASPNetBenchmarks-All.csv | 11 +------- .../ASPNetBenchmarks-Aot-Windows.csv | 7 +++++ .../ASPNetBenchmarks-Linux.csv | 2 -- .../ASPNetBenchmarks/ASPNetBenchmarks.yaml | 4 ++- .../AspNetBenchmarksCommand.cs | 13 +++++----- .../Notebooks/ASPNetBenchmarkAnalysis.ipynb | 26 ++++++++++++------- 6 files changed, 35 insertions(+), 28 deletions(-) create mode 100644 src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks-Aot-Windows.csv diff --git a/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks-All.csv b/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks-All.csv index 19d69fea4a8..92366107465 100644 --- a/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks-All.csv +++ b/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks-All.csv @@ -41,23 +41,14 @@ PlaintextPlatformInline_Windows, --config https://raw.githubusercontent.com/aspn JsonPlatform_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/platform.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/azure.profile.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario json --profile intel-win-app --profile intel-load2-load --application.collectDependencies true --application.options.collectCounters true PlaintextPlatform_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/platform.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/azure.profile.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario plaintext --profile intel-win-app --profile intel-load2-load --application.framework net8.0 --application.collectDependencies true --application.options.collectCounters true Stage1_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario basicminimalapivanilla --profile intel-win-app --profile intel-lin-load --profile amd-lin2-db --application.framework net8.0 --application.options.collectCounters true -Stage1Aot_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario basicminimalapipublishaot --profile intel-win-app --profile intel-lin-load --profile amd-lin2-db --application.packageReferences "Microsoft.Dotnet.ILCompiler=$(MicrosoftNETCoreAppPackageVersion)" --application.framework net8.0 --application.options.collectCounters true -Stage1GrpcAotServerGC_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario basicgrpcpublishaot --profile intel-win-app --profile intel-lin-load --application.packageReferences Microsoft.Dotnet.ILCompiler=$(MicrosoftNETCoreAppPackageVersion) --application.environmentVariables DOTNET_gcServer=1 --application.options.collectCounters true -Stage1GrpcAot_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario basicgrpcpublishaot --profile intel-win-app --profile intel-lin-load --application.packageReferences Microsoft.Dotnet.ILCompiler=$(MicrosoftNETCoreAppPackageVersion) --application.options.collectCounters true Stage1GrpcTrimR2RSingleFile_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario basicgrpcpublishtrimr2rsinglefile --profile intel-win-app --profile intel-lin-load --application.options.collectCounters true Stage1GrpcServerGC_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario basicgrpcvanilla --profile intel-win-app --profile intel-lin-load --application.options.collectCounters true Stage1Grpc_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario basicgrpcvanilla --profile intel-win-app --profile intel-lin-load --application.options.collectCounters true -Stage2AotServerGC_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario todosapipublishaot --profile intel-win-app --profile intel-lin-load --profile amd-lin2-db --application.packageReferences Microsoft.Dotnet.ILCompiler=$(MicrosoftNETCoreAppPackageVersion) --application.buildArguments /p:ServerGarbageCollection=true --application.options.collectCounters true -Stage2Aot_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario todosapipublishaot --profile intel-win-app --profile intel-lin-load --profile amd-lin2-db --application.packageReferences Microsoft.Dotnet.ILCompiler=$(MicrosoftNETCoreAppPackageVersion) --application.options.collectCounters true Stage2TrimR2RSingleFile_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario todosapipublishtrimr2rsinglefile --profile intel-win-app --profile intel-lin-load --profile amd-lin2-db --application.options.collectCounters true Stage2ServerGC_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario todosapivanilla --profile intel-win-app --profile intel-lin-load --profile amd-lin2-db --application.buildArguments /p:ServerGarbageCollection=true --application.options.collectCounters true Stage2_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario todosapivanilla --profile intel-win-app --profile intel-lin-load --profile amd-lin2-db --application.options.collectCounters true -Stage1AotSpeedOpt_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario basicminimalapipublishaot --profile intel-win-app --profile intel-lin-load --profile amd-lin2-db --application.packageReferences Microsoft.Dotnet.ILCompiler=$(MicrosoftNETCoreAppPackageVersion) --application.buildArguments /p:OptimizationPreference=Speed --application.options.collectCounters true -Stage1AotServerGC_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario basicminimalapipublishaot --profile intel-win-app --profile intel-lin-load --application.packageReferences Microsoft.Dotnet.ILCompiler=$(MicrosoftNETCoreAppPackageVersion) --application.environmentVariables DOTNET_gcServer=1 --application.options.collectCounters true Stage1TrimR2RSingleFile_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario basicminimalapipublishtrimr2rsinglefile --profile intel-win-app --profile intel-lin-load --application.options.collectCounters true Stage1ServerGC_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario basicminimalapivanilla --profile intel-win-app --profile intel-lin-load --application.environmentVariables DOTNET_gcServer=1 --application.options.collectCounters true Stage1GrpcPgo_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario basicgrpcvanilla --profile intel-win-app --profile intel-lin-load --application.environmentVariables DOTNET_TieredPGO=1 --application.options.collectCounters true Stage2Pgo_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario todosapivanilla --profile intel-win-app --profile intel-lin-load --profile amd-lin2-db --application.environmentVariables DOTNET_TieredPGO=1 --application.options.collectCounters true -Stage1Pgo_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario basicminimalapivanilla --profile intel-win-app --profile intel-lin-load --application.environmentVariables DOTNET_TieredPGO=1 --application.options.collectCounters true -Stage1GrpcAotSpeedOpt_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario basicgrpcpublishaot --profile intel-win-app --profile intel-lin-load --profile amd-lin2-db --application.packageReferences Microsoft.Dotnet.ILCompiler=$(MicrosoftNETCoreAppPackageVersion) --application.buildArguments /p:OptimizationPreference=Speed --application.options.collectCounters true -Stage2AotSpeedOpt_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario todosapipublishaot --profile intel-win-app --profile intel-lin-load --profile amd-lin2-db --application.packageReferences Microsoft.Dotnet.ILCompiler=$(MicrosoftNETCoreAppPackageVersion) --application.buildArguments /p:OptimizationPreference=Speed --application.options.collectCounters true \ No newline at end of file +Stage1Pgo_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario basicminimalapivanilla --profile intel-win-app --profile intel-lin-load --application.environmentVariables DOTNET_TieredPGO=1 --application.options.collectCounters true \ No newline at end of file diff --git a/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks-Aot-Windows.csv b/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks-Aot-Windows.csv new file mode 100644 index 00000000000..c77eeb4ba1d --- /dev/null +++ b/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks-Aot-Windows.csv @@ -0,0 +1,7 @@ +Legend,Base CommandLine +Stage1Aot_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario basicminimalapipublishaot --profile intel-win-app --profile intel-lin-load --profile amd-lin2-db --application.packageReferences "Microsoft.Dotnet.ILCompiler=$(MicrosoftNETCoreAppPackageVersion)" --application.framework net8.0 --application.options.collectCounters true +Stage1GrpcAot_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario basicgrpcpublishaot --profile intel-win-app --profile intel-lin-load --application.packageReferences Microsoft.Dotnet.ILCompiler=$(MicrosoftNETCoreAppPackageVersion) --application.options.collectCounters true +Stage1AotSpeedOpt_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario basicminimalapipublishaot --profile intel-win-app --profile intel-lin-load --profile amd-lin2-db --application.packageReferences Microsoft.Dotnet.ILCompiler=$(MicrosoftNETCoreAppPackageVersion) --application.buildArguments /p:OptimizationPreference=Speed --application.options.collectCounters true +Stage1GrpcAotSpeedOpt_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario basicgrpcpublishaot --profile intel-win-app --profile intel-lin-load --profile amd-lin2-db --application.packageReferences Microsoft.Dotnet.ILCompiler=$(MicrosoftNETCoreAppPackageVersion) --application.buildArguments /p:OptimizationPreference=Speed --application.options.collectCounters true +Stage2Aot_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario todosapipublishaot --profile intel-win-app --profile intel-lin-load --profile amd-lin2-db --application.packageReferences Microsoft.Dotnet.ILCompiler=$(MicrosoftNETCoreAppPackageVersion) --application.options.collectCounters true +Stage2AotSpeedOpt_Windows, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario todosapipublishaot --profile intel-win-app --profile intel-lin-load --profile amd-lin2-db --application.packageReferences Microsoft.Dotnet.ILCompiler=$(MicrosoftNETCoreAppPackageVersion) --application.buildArguments /p:OptimizationPreference=Speed --application.options.collectCounters true \ No newline at end of file diff --git a/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks-Linux.csv b/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks-Linux.csv index 769ec037921..c487eb268ef 100644 --- a/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks-Linux.csv +++ b/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks-Linux.csv @@ -1,6 +1,4 @@ Legend,Base CommandLine FortunesEf_Linux, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/database.benchmarks.yml --scenario fortunes_ef --application.framework net8.0 --application.options.collectCounters true --profile aspnet-citrine-lin --property os=linux --property arch=x64 JsonMin_Linux, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/json.benchmarks.yml --scenario mapaction --application.framework net8.0 --application.options.collectCounters true --profile aspnet-citrine-lin --property os=linux --property arch=x64 -FortunesEf_Linux, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/database.benchmarks.yml --scenario fortunes_ef --application.framework net8.0 --application.options.collectCounters true --profile aspnet-citrine-lin --property os=linux --property arch=x64 -JsonMin_Linux, --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/json.benchmarks.yml --scenario mapaction --application.framework net8.0 --application.options.collectCounters true --profile aspnet-citrine-lin --property os=linux --property arch=x64 Stage1Grpc_Linux, crank --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/goldilocks.benchmarks.yml --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/build/ci.profile.yml --scenario basicgrpcvanilla --profile intel-load2-app --profile amd-lin2-load --profile amd-lin2-db --application.options.collectCounters true \ No newline at end of file diff --git a/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks.yaml b/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks.yaml index bc9b7056d83..4a67bd88c47 100644 --- a/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks.yaml +++ b/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks.yaml @@ -14,7 +14,9 @@ environment: framework_version: net8.0 benchmark_settings: benchmark_file: C:\InfraRuns\RunNew_All\Suites\ASPNETBenchmarks\ASPNetBenchmarks.csv - additional_arguments: --chart --chart-type hex + # To take a dump: --application.options.dumpType full --application.options.dumpOutput + # To fetch the build artifacts: --application.options.fetch true + additional_arguments: --chart --chart-type hex output: path: C:\InfraRuns\RunNew_All\ASPNetBenchmarks columns: diff --git a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksCommand.cs b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksCommand.cs index 6ace4ce4ebe..1c8c8f39326 100644 --- a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksCommand.cs +++ b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksCommand.cs @@ -31,7 +31,7 @@ public sealed class AspNetBenchmarkSettings : CommandSettings { [Description("Path to Configuration.")] [CommandOption("-c|--configuration")] - public string? ConfigurationPath { get; init; } + public required string ConfigurationPath { get; init; } } public override int Execute([NotNull] CommandContext context, [NotNull] AspNetBenchmarkSettings settings) @@ -88,6 +88,7 @@ public static AspNetBenchmarkResults RunASPNetBenchmarks(ASPNetBenchmarksConfigu // Launch new crank process. int exitCode = -1; + string logfileOutput = Path.Combine(outputPath, $"{GetKey(c.Key, run.Key)}.log"); StringBuilder output = new(); StringBuilder error = new(); @@ -104,23 +105,24 @@ public static AspNetBenchmarkResults RunASPNetBenchmarks(ASPNetBenchmarksConfigu crankProcess.OutputDataReceived += (s, d) => { - output.AppendLine(d.Data); + output.AppendLine(d?.Data); }; crankProcess.ErrorDataReceived += (s, d) => { - error.Append(d.Data); + error.AppendLine(d?.Data); }; crankProcess.Start(); crankProcess.BeginOutputReadLine(); crankProcess.BeginErrorReadLine(); - bool exited = crankProcess.WaitForExit((int)configuration.Environment.default_max_seconds * 1000); + bool exited = crankProcess.WaitForExit((int)configuration.Environment!.default_max_seconds * 1000); // If the process still hasn't exited, it has timed out from the crank side of things and we'll need to rerun this benchmark. if (!crankProcess.HasExited) { - AnsiConsole.MarkupLine($"[red bold] ASP.NET Benchmark timed out for: {configuration.Name} {run.Key} {c.Key} [/]"); + AnsiConsole.MarkupLine($"[red bold] ASP.NET Benchmark timed out for: {configuration.Name} {run.Key} {c.Key} - skipping the results but writing stdout and stderror to {logfileOutput} [/]"); + File.WriteAllText(logfileOutput, "Output: \n" + output.ToString() + "\n Errors: \n" + error.ToString()); continue; } @@ -155,7 +157,6 @@ public static AspNetBenchmarkResults RunASPNetBenchmarks(ASPNetBenchmarksConfigu error.AppendLine(outputDetails); } - string logfileOutput = Path.Combine(outputPath, $"{GetKey(c.Key, run.Key)}.log"); if (exitCode != 0) { string[] outputLines = outputDetails.Split("\n"); diff --git a/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb b/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb index bdf7e33b7ab..eedb7e01299 100644 --- a/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb +++ b/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb @@ -963,7 +963,16 @@ " sortedLoadInfo.Add(iteration.Value.OrderByDescending(sortingFunctor).ToList());\n", " }\n", "\n", - " //sortedLoadInfo.Add()\n", + " List sortedAverages = new();\n", + "\n", + " foreach (var benchmark in averageData[baseline])\n", + " {\n", + " LoadInfo baselineInfo = benchmark.Value;\n", + " LoadInfo comparandInfo = averageData[comparand][benchmark.Key];\n", + " LoadInfo comparisonInfo = GetComparison(baselineInfo, comparandInfo);\n", + " sortedAverages.Add(comparisonInfo);\n", + " }\n", + " sortedAverages = sortedAverages.OrderByDescending(sortingFunctor).ToList();\n", "\n", " // Create CSV.\n", " StringBuilder top = new();\n", @@ -988,14 +997,7 @@ " for (int benchmarkIdx = 0; benchmarkIdx < totalCountOfBenchmarks; benchmarkIdx++)\n", " {\n", " string benchmarkData = string.Join(\",,\", Enumerable.Range(0, numberOfIterations).Select(iteration => DisplayDetailsForABenchmark(sortedLoadInfo[iteration][benchmarkIdx])));\n", - "\n", - " string benchmarkName = sortedLoadInfo[0][benchmarkIdx].Benchmark;\n", - "\n", - " LoadInfo baselineAverage = averageData[baseline][benchmarkName];\n", - " LoadInfo comparandAverage = averageData[comparand][benchmarkName];\n", - " LoadInfo averageDiff = GetComparison(baselineAverage, comparandAverage);\n", - "\n", - " benchmarkData += $\",,{DisplayDetailsForABenchmark(averageDiff)}\";\n", + " benchmarkData += $\",,{DisplayDetailsForABenchmark(sortedAverages[benchmarkIdx])}\";\n", "\n", " top.AppendLine(benchmarkData);\n", " }\n", @@ -1022,6 +1024,12 @@ " Dictionary baselineData = _runToBenchmarkData[baselineIteration];\n", " Dictionary comparandData = _runToBenchmarkData[comparandIteration];\n", "\n", + " if (iterationIdx == 0)\n", + " {\n", + " var sortedBaseline = baselineData.Values.OrderByDescending(sortingFunctor);\n", + " baselineData = sortedBaseline.ToDictionary(d => d.Benchmark);\n", + " }\n", + "\n", " Scatter baselineScatter = new()\n", " {\n", " x = baselineData.Select(b => b.Key),\n", From 7a95f423f1d5799386862c473579711d0c67d143 Mon Sep 17 00:00:00 2001 From: mrsharm Date: Fri, 15 Sep 2023 01:20:08 -0700 Subject: [PATCH 24/26] Updated plot for vol --- .../Notebooks/ASPNetBenchmarkAnalysis.ipynb | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb b/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb index eedb7e01299..a4dc4c4251c 100644 --- a/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb +++ b/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb @@ -756,6 +756,32 @@ " }\n", "\n", " Chart.Plot(scatters, layout).Display();\n", + "\n", + " scatters.Clear();\n", + " layout = new Layout.Layout\n", + " {\n", + " xaxis = new Xaxis { title = \"Volatility Index\" },\n", + " yaxis = new Yaxis { title = \"Metric Volatility Score\" },\n", + " width = 1500,\n", + " title = $\"Volatility Index Sorted by {s} for {sortedPerBuildVolatility.First().Key}\"\n", + " };\n", + "\n", + " foreach (var b in sortedPerBuildVolatility)\n", + " {\n", + " var sorted = b.Value.OrderByDescending(selectionFunctor);\n", + " var scatter = new Scatter\n", + " {\n", + " x = Enumerable.Range(0, sorted.Count()),\n", + " y = sorted.Select(selectionFunctor),\n", + " mode = \"markers\",\n", + " name = b.Key,\n", + " text = sorted.Select(ss => ss.Benchmark),\n", + " };\n", + "\n", + " scatters.Add(scatter);\n", + " }\n", + " \n", + " Chart.Plot(scatters, layout).Display();\n", " }\n", " }\n", "\n", From ba8c7e0ce934ab48f5b1e418bf8105397ab54fe2 Mon Sep 17 00:00:00 2001 From: mrsharm Date: Fri, 15 Sep 2023 16:50:07 -0700 Subject: [PATCH 25/26] Added benchmark filtering and fix path in the notebook --- .../ASPNetBenchmarks/ASPNetBenchmarks.yaml | 3 +++ .../ASPNetBenchmark.Configuration.cs | 1 + .../AspNetBenchmarksCommand.cs | 23 ++++++++++++++++++- .../Notebooks/ASPNetBenchmarkAnalysis.ipynb | 4 ++-- 4 files changed, 28 insertions(+), 3 deletions(-) diff --git a/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks.yaml b/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks.yaml index 4a67bd88c47..412206079fb 100644 --- a/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks.yaml +++ b/src/benchmarks/gc/GC.Infrastructure/Configurations/ASPNetBenchmarks/ASPNetBenchmarks.yaml @@ -17,6 +17,9 @@ benchmark_settings: # To take a dump: --application.options.dumpType full --application.options.dumpOutput # To fetch the build artifacts: --application.options.fetch true additional_arguments: --chart --chart-type hex + # Can optionally filter for specific benchmarks with a list of regexes. + # benchmark_filters: + # - Platform* output: path: C:\InfraRuns\RunNew_All\ASPNetBenchmarks columns: diff --git a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/Configurations/ASPNetBenchmark.Configuration.cs b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/Configurations/ASPNetBenchmark.Configuration.cs index 75a58aa4911..2cb86f3acc4 100644 --- a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/Configurations/ASPNetBenchmark.Configuration.cs +++ b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure.Core/Configurations/ASPNetBenchmark.Configuration.cs @@ -25,6 +25,7 @@ public class BenchmarkSettings { public string? benchmark_file { get; set; } public string additional_arguments { get; set; } = ""; + public List benchmarkFilters { get; set; } = new(); } public class Output : OutputBase { } diff --git a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksCommand.cs b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksCommand.cs index 1c8c8f39326..bf6dd167aec 100644 --- a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksCommand.cs +++ b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksCommand.cs @@ -8,6 +8,7 @@ using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Text; +using System.Text.RegularExpressions; namespace GC.Infrastructure.Commands.ASPNetBenchmarks { @@ -64,7 +65,27 @@ public static AspNetBenchmarkResults RunASPNetBenchmarks(ASPNetBenchmarksConfigu string[] line = lines[lineIdx].Split(',', StringSplitOptions.TrimEntries); Debug.Assert(line.Length == 2); - benchmarkNameToCommand[line[0]] = line[1]; + + string benchmarkName = line[0]; + string benchmarkCommands = line[1]; + + // If the filters are empty. Include all. + if (configuration.benchmark_settings.benchmarkFilters == null || configuration.benchmark_settings.benchmarkFilters.Count == 0) + { + benchmarkNameToCommand[benchmarkName] = benchmarkCommands; + } + + // Else, do a regex match on the filters. + else + { + foreach (var filter in configuration.benchmark_settings.benchmarkFilters!) + { + if (Regex.IsMatch(benchmarkName, filter)) + { + benchmarkNameToCommand[benchmarkName] = benchmarkCommands; + } + } + } } // For each benchmark, iterate over all specified runs. diff --git a/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb b/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb index a4dc4c4251c..5e554d83d75 100644 --- a/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb +++ b/src/benchmarks/gc/GC.Infrastructure/Notebooks/ASPNetBenchmarkAnalysis.ipynb @@ -75,7 +75,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 40, "metadata": { "dotnet_interactive": { "language": "csharp" @@ -90,7 +90,7 @@ "outputs": [], "source": [ "// TODO: Ensure you are pointing to the right artifacts folder.\n", - "#r \"C:\\performance\\artifacts\\bin\\GC.Infrastructure\\Debug\\net7.0\\GC.Analysis.API.dll\"\n", + "#r \"..\\..\\..\\..\\..\\artifacts\\bin\\GC.Analysis.API\\Release\\net6.0\\GC.Analysis.API.dll\"\n", "\n", "using GC.Analysis.API;" ] From 82ef8a4e0874472c5e6003b7c8540b8357681ecc Mon Sep 17 00:00:00 2001 From: mrsharm Date: Fri, 15 Sep 2023 23:31:21 -0700 Subject: [PATCH 26/26] Ordering in terms of filters and matches on ends + regexes --- .../AspNetBenchmarksCommand.cs | 41 ++++++++++++++----- 1 file changed, 30 insertions(+), 11 deletions(-) diff --git a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksCommand.cs b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksCommand.cs index bf6dd167aec..3aedc2168de 100644 --- a/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksCommand.cs +++ b/src/benchmarks/gc/GC.Infrastructure/GC.Infrastructure/Commands/ASPNetBenchmarks/AspNetBenchmarksCommand.cs @@ -69,27 +69,46 @@ public static AspNetBenchmarkResults RunASPNetBenchmarks(ASPNetBenchmarksConfigu string benchmarkName = line[0]; string benchmarkCommands = line[1]; - // If the filters are empty. Include all. - if (configuration.benchmark_settings.benchmarkFilters == null || configuration.benchmark_settings.benchmarkFilters.Count == 0) - { - benchmarkNameToCommand[benchmarkName] = benchmarkCommands; - } + benchmarkNameToCommand[benchmarkName] = benchmarkCommands; + } + + List> benchmarkToNameCommandAsKvpList = new(); + bool noBenchmarkFilters = + (configuration.benchmark_settings.benchmarkFilters == null || configuration.benchmark_settings.benchmarkFilters.Count == 0); - // Else, do a regex match on the filters. - else + // If the user has specified benchmark filters, retrieve them in that order. + if (!noBenchmarkFilters) + { + foreach (var filter in configuration.benchmark_settings.benchmarkFilters!) { - foreach (var filter in configuration.benchmark_settings.benchmarkFilters!) + foreach (var kvp in benchmarkNameToCommand) { - if (Regex.IsMatch(benchmarkName, filter)) + // Check if we simply end with a "*", if so, match. + if (filter.EndsWith("*") && kvp.Key.StartsWith(filter.Replace("*", ""))) { - benchmarkNameToCommand[benchmarkName] = benchmarkCommands; + benchmarkToNameCommandAsKvpList.Add(new KeyValuePair(kvp.Key, kvp.Value)); + } + + // Regular Regex check. + else if (Regex.IsMatch(kvp.Key, $"^{filter}$")) + { + benchmarkToNameCommandAsKvpList.Add(new KeyValuePair(kvp.Key, kvp.Value)); } } } } + // Else, add all the benchmarks. + else + { + foreach (var kvp in benchmarkNameToCommand) + { + benchmarkToNameCommandAsKvpList.Add(new KeyValuePair(kvp.Key, kvp.Value)); + } + } + // For each benchmark, iterate over all specified runs. - foreach (var c in benchmarkNameToCommand) + foreach (var c in benchmarkToNameCommandAsKvpList) { foreach (var run in configuration.Runs) {